Merge branch 'creation-form' into 'develop'

Creation form

See merge request framasoft/framadate/funky-framadate-front!46
This commit is contained in:
ty kayn 2020-11-24 10:45:52 +01:00
commit 949a945bbc
97 changed files with 35000 additions and 293 deletions

View File

@ -39,7 +39,7 @@ EN: All documentation is available in the "doc" folder, mainly in French because
## LIBRARIES USED
| status | lib name | usage |
| status | lib choice_label | usage |
| :-------------: | -------------------------------------------------------------- | --------------------------------------------------------- |
| | [axios](https://github.com/axios/axios) | http client |
| | [bulma](https://bulma.io/) | CSS framework |
@ -71,7 +71,7 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
## Code scaffolding
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
Run `ng generate component component-choice_label` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
## Build

View File

@ -73,7 +73,8 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "framadate:build"
"browserTarget": "framadate:build",
"proxyConfig": "src/proxy.conf.json"
},
"configurations": {
"production": {

View File

@ -1,32 +1,41 @@
// TODO: File to be deleted : just temporary documentation of backend API endpoints
/**
*
* -------------------------- -------- -------- ------ ------------------------------------------------
------------------------------------------ ---------- -------- ------ ------------------------------------------------
Name Method Scheme Host Path
-------------------------- -------- -------- ------ ------------------------------------------------
------------------------------------------ ---------- -------- ------ ------------------------------------------------
_twig_error_test ANY ANY ANY /_error/{code}.{_format}
admin_homepage_get_default GET ANY ANY /admin/
admin_homepage_clean_expired_polls GET ANY ANY /admin/polls/clean/{token}
api_get_poll_comment GET ANY ANY /polls/{id}/comments
api_new_comment POST ANY ANY /polls/{id}/comments
api_poll_comments_delete DELETE ANY ANY /polls/{id}/comments
user_homepageget_default GET ANY ANY /users/
user_homepage_polls_send_by_email GET ANY ANY /users/{email}/polls/send-by-email
api_get_all_polls GET ANY ANY /polls/
api_get_poll GET ANY ANY /polls/{id}
api_update_poll PUT ANY ANY /polls/{id}/{token}
api_new_poll POST ANY ANY /polls/
api_test-mail-polls GET ANY ANY /polls/mail/test-mail-polls/{emailChoice}
api_poll_delete DELETE ANY ANY /polls/{id}
api_check_slug_is_unique GET ANY ANY /polls/slugs/{slug}
api_get_admin_config GET ANY ANY /polls/admin/{token}
api_new_vote_stack POST ANY ANY /polls/{id}/votes
api_update_vote_stack PATCH ANY ANY /votes-stacks/{id}/token/{modifierToken}
api_poll_votes_delete DELETE ANY ANY /polls/{id}/votes/{accessToken}
admin_homepage_migrate_framadate GET ANY ANY /admin/polls/migrate
api_get_poll_comment GET ANY ANY /api/v1/poll/{id}/comments
api_new_comment POST ANY ANY /api/v1/poll/{id}/comment
api_poll_comments_delete DELETE ANY ANY /api/v1/poll/{id}/comments
api_page_home GET ANY ANY /page/
user_homepageget_default GET ANY ANY /user/
user_homepage_polls_send_by_email GET ANY ANY /user/{email}/polls/send-by-email
poll_index GET ANY ANY /poll/
poll_new GET|POST ANY ANY /poll/new
poll_show GET ANY ANY /poll/{id}
poll_edit GET|POST ANY ANY /poll/{id}/edit
poll_delete DELETE ANY ANY /poll/{id}
api_new_vote_stack POST ANY ANY /api/v1/poll/{id}/answer
api_update_vote_stack PATCH ANY ANY /api/v1/vote-stack/{id}/token/{modifierToken}
api_poll_votes_delete DELETE ANY ANY /api/v1/poll/{id}/votes/{accessToken}
api_get_all_polls GET ANY ANY /api/v1/poll/
api_get_poll GET ANY ANY /api/v1/poll/{id}
api_update_poll PUT ANY ANY /api/v1/poll/{id}/{token}
api_new_poll POST ANY ANY /api/v1/poll/
api_test-mail-poll GET ANY ANY /api/v1/poll/mail/test-mail-poll/{emailChoice}
api_poll_delete DELETE ANY ANY /api/v1/poll/{id}
api_check_slug_is_unique GET ANY ANY /api/v1/poll/slug/{slug}
api_get_admin_config GET ANY ANY /api/v1/poll/admin/{token}
overblog_graphql_endpoint ANY ANY ANY /api/graphql/
overblog_graphql_batch_endpoint ANY ANY ANY /api/graphql/batch
overblog_graphql_multiple_endpoint ANY ANY ANY /api/graphql/graphql/{schemaName}
overblog_graphql_batch_multiple_endpoint ANY ANY ANY /api/graphql/graphql/{schemaName}/batch
app.swagger GET ANY ANY /api/doc.json
-------------------------- -------- -------- ------ ------------------------------------------------
*/
------------------------------------------ ---------- -------- ------ ------------------------------------------------
/**
* WANTED CHANGES (seraf)

5
index.lokalize Normal file
View File

@ -0,0 +1,5 @@
[General]
LangCode=fr_FR
PotBaseDir=src/assets/i18n
ProjectID=funky-framadate-front
TargetLangCode=fr_FR

View File

@ -0,0 +1,14 @@
<!--
Collection name attribute represents the name of the menu, e.g., to use menu "File" use "file" or "Help" use "help". You can add new menus.
If you type a relative script file beware that this script is located in $XDG_DATA_HOME/applicationname/
The following example adds an action with the text "Export..." into the "File" menu
<KrossScripting>
<collection name="file" text="File" comment="File menu">
<script name="export" text="Export..." comment="Export content" file="export.py" />
</collection>
</KrossScripting>
-->

4
main.lqa Normal file
View File

@ -0,0 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<qa version="1.0">
<category name="default"/>
</qa>

View File

@ -20,7 +20,9 @@
"compodoc": "compodoc -p tsconfig.app.json",
"mock:server": "json-server --port 8000 --watch ./mocks/db.json --routes ./mocks/routes.json",
"start:proxy": "ng serve --proxy-config proxy.conf.json",
"start:proxymock": "concurrently --kill-others \"yarn mock:server\" \"yarn start:proxy\""
"start:proxymock": "concurrently --kill-others \"yarn mock:server\" \"yarn start:proxy\"",
"i18n:init": "ngx-translate-extract --input ./src --output ./src/assets/i18n/template.json --key-as-default-value --replace --format json",
"i18n:extract": "ngx-translate-extract --input ./src --output ./src/assets/i18n/{en,da,de,fi,nb,nl,sv}.json --clean --format json"
},
"private": false,
"dependencies": {
@ -35,6 +37,8 @@
"@angular/platform-browser": "^9.0.7",
"@angular/platform-browser-dynamic": "^9.0.7",
"@angular/router": "^9.0.7",
"@biesbjerg/ngx-translate-extract": "^7.0.3",
"@biesbjerg/ngx-translate-po-http-loader": "^3.1.0",
"@fullcalendar/core": "^4.4.0",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^5.0.0",
@ -53,6 +57,7 @@
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"short-unique-id": "^3.0.3",
"stream": "^0.0.2",
"tslib": "<2.0.0",
"zone.js": "^0.10.3"
},

View File

@ -52,6 +52,7 @@ export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
NgxWebstorageModule.forRoot({ prefix: environment.localStorage.key }),
SharedModule,
TranslateModule.forRoot({
defaultLanguage: 'FR',
loader: {
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
@ -61,7 +62,7 @@ export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
provide: MissingTranslationHandler,
useClass: MyMissingTranslationHandler,
},
useDefaultLang: false,
useDefaultLang: true,
}),
],
providers: [Title, TranslateService],

View File

@ -1,8 +1,12 @@
<footer class="footer">
<div class="content has-text-centered">
<p>
Framadate - libérez vos sondages.
<i class="fa fa-copyleft"></i> Logiciel libre sous licence AGPL v3.
<img class="app-logo logo" *ngIf="env.appLogo" src="{{ env.appLogo }}" alt="{{ env.appTitle }}" />
{{ env.appTitle }} - {{ env.appVersion }} - libérez vos sondages. <i class="fa fa-copyleft"></i> Logiciel
libre sous licence AGPL v3.
<app-theme-selector></app-theme-selector>
<a href="https://framagit.org/framasoft/framadate/funky-framadate-front">
<i class="fa fa-gitlab"></i> Sources</a
>

View File

@ -0,0 +1,4 @@
.app-logo {
max-width: 5em;
max-height: 5em;
}

View File

@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-footer',
@ -6,6 +7,7 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./footer.component.scss'],
})
export class FooterComponent implements OnInit {
public env = environment;
constructor() {}
ngOnInit(): void {}

View File

@ -3,10 +3,10 @@
<div class="navbar-brand">
<a class="navbar-item" routerLink="/">
<img class="app-logo logo" *ngIf="appLogo" src="{{ appLogo }}" alt="{{ appTitle }}" />
<span class="app-title title">
<span class="app-title title is-2">
{{ appTitle }}
</span>
<span class="dev-env" *ngIf="!env.production">
<span class="dev-env button has-background-success" *ngIf="!env.production">
<i>
(dev)
</i>
@ -19,6 +19,8 @@
aria-label="menu"
aria-expanded="false"
data-target="navbarBasicExample"
[ngClass]="{ 'has-background-primary': mobileMenuVisible }"
(click)="mobileMenuVisible = !mobileMenuVisible"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
@ -29,15 +31,19 @@
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item btn btn--primary" routerLink="administration" routerLinkActive="is-active">
<i class="fa fa-plus-circle"></i> {{ 'config.title' | translate }}
<i class="fa fa-plus-circle"></i>
<span>
{{ 'config.title' | translate }}
</span>
</a>
</div>
<div class="navbar-end">
<a class="navbar-item btn btn-primary" routerLink="user/polls" routerLinkActive="is-active">
<i class="fa fa-user"></i> {{ 'config.find_my_polls' | translate }}
</a>
<app-language-selector></app-language-selector>
</div>
</div>
<div class="mobile-menu" *ngIf="mobileMenuVisible">
menu mobile
</div>
</nav>
</header>

View File

@ -2,6 +2,9 @@
header {
nav {
padding-right: 1em;
.fa {
margin-right: 1ch;
}
}
.container {
padding: 0;

View File

@ -17,8 +17,9 @@ export class HeaderComponent implements OnInit {
public env = environment;
@Input() public appTitle: string = 'FramaDate Funky';
@Input() public appLogo: string;
mobileMenuVisible = false;
constructor(private userService: UserService, private modalService: ModalService) {}
constructor(private userService: UserService) {}
public ngOnInit(): void {}
}

View File

@ -2,26 +2,68 @@
<div class="hero-body">
<div class="container">
<h1 class="title">
Bienvenue sur Framasondage
{{ 'home.title' | translate }}
{{ env.appTitle }}
</h1>
<div class="columns">
<div class="column">
<h2 class="subtitle">
Se consulter simplement pour sorganiser collectivement.
{{ 'home.subtitle' | translate }}
</h2>
<a role="button" class="button is-fullwidth is-primary" routerLink="administration">
Créer un nouveau sondage
</a>
</div>
<div class="column">
<h2 class="subtitle">
Où sont mes sondages?
{{ 'home.search_title' | translate }}
</h2>
<a role="button" class="button is-fullwidth is-primary" routerLink="user/polls">
Mes sondages
</a>
</div>
</div>
<div class="columns">
<div class="column">
<a role="button" class="button is-fullwidth is-primary" routerLink="administration">
<i class="fa fa-plus-circle"></i>
{{ 'home.create_button' | translate }}
</a>
<img src="assets/img/kind/date.jpeg" alt="sondage date" />
</div>
<div class="column">
<a role="button" class="button is-fullwidth is-primary" routerLink="user/polls">
<i class="fa fa-search"></i>
{{ 'home.search_button' | translate }}
</a>
<img src="assets/img/kind/classic.jpeg" alt="sondage date" />
</div>
</div>
<div class="column">
<img src="assets/img/undraw_group_selfie_ijc6.svg" alt="image WIP" />
<p>
{{
'SENTENCES.framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily'
| translate
}}
{{ 'SENTENCES.here-is-how-it-works' | translate }}
{{ 'SENTENCES.send-the-poll-link-to-your-friends-or-colleagues' | translate }}
</p>
<p>
{{ 'SENTENCES.what-is-framadate' | translate }}
{{ 'SENTENCES.view-an-example' | translate }}
{{ 'SENTENCES.framadate-is-licensed-under-the' | translate }}
<span class="licence">
GNU Affero v3 Licence
</span>
</p>
<p>
{{ 'SENTENCES.grow-your-own' | translate }}
{{
'SENTENCES.if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help'
| translate
}}
{{
'SENTENCES.to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit'
| translate
}}
{{ 'SENTENCES.the-development-site' | translate }}
</p>
</div>
</div>
</div>
</section>

View File

@ -0,0 +1,6 @@
:host {
text-align: center;
a .fa {
margin-right: 1ch;
}
}

View File

@ -1,12 +1,11 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
})
export class HomeComponent implements OnInit {
constructor() {}
ngOnInit(): void {}
export class HomeComponent {
public env = environment;
}

View File

@ -2,9 +2,6 @@
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link"> Tous les sondages </a>
<div class="navbar-dropdown">
<a class="navbar-item" routerLink="/poll/inexistentPoll/consultation" routerLinkActive="is-active">
« inexistentPoll »
</a>
<a
class="navbar-item"
*ngFor="let poll of _pollsAvailables | async"
@ -18,7 +15,7 @@
<hr />
<div class="navbar-item has-dropdown is-hoverable">
<div class="navbar-item has-dropdown is-hoverable is-warning" *ngIf="devModeEnabled">
<a class="navbar-link"> Modules </a>
<div class="navbar-dropdown">
<a class="navbar-item" routerLink="oldstuff" routerLinkActive="is-active">
@ -34,13 +31,12 @@
Participation
</a>
</div>
</div>
<hr />
<a class="button is-block" routerLink="oldstuff/step/home" routerLinkActive="active">
<i class="fa fa-home" aria-hidden="true"></i> Accueil
<a class="navbar-item" routerLink="/poll/inexistentPoll/consultation" routerLinkActive="is-active">
« inexistentPoll »
</a>
<hr />
<a class="button is-block" routerLink="oldstuff/step/creation" routerLinkActive="active"> Création </a>
<a class="button is-block" routerLink="oldstuff/step/date" routerLinkActive="active"> Les Dates </a>
<a class="button is-block" routerLink="oldstuff/step/answers" routerLinkActive="active"> Réponses </a>
@ -58,4 +54,9 @@
Sondage 3 (dessins animés)
</a>
<a class="button is-block" routerLink="oldstuff/graphic/toto" routerLinkActive="active"> Graphique </a>
</div>
<a class="button is-block" routerLink="oldstuff/step/home" routerLinkActive="active">
<i class="fa fa-home" aria-hidden="true"></i> Accueil
</a>
</nav>

View File

@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
import { Poll } from '../../../models/poll.model';
import { MockingService } from '../../../services/mocking.service';
import { environment } from '../../../../../environments/environment';
@Component({
selector: 'app-navigation',
@ -11,6 +12,7 @@ import { MockingService } from '../../../services/mocking.service';
})
export class NavigationComponent implements OnInit {
public _pollsAvailables: Observable<Poll[]> = this.mockingService.pollsAvailables;
public devModeEnabled = !environment.production;
constructor(private mockingService: MockingService) {}

View File

@ -10,10 +10,11 @@ import { HomeComponent } from './components/home/home.component';
import { LogoComponent } from './components/logo/logo.component';
import { NavigationComponent } from './components/sibebar/navigation/navigation.component';
import { throwIfAlreadyLoaded } from './guards/module-import.guard';
import { SharedModule } from '../shared/shared.module';
@NgModule({
declarations: [FooterComponent, HeaderComponent, HomeComponent, LogoComponent, NavigationComponent],
imports: [CommonModule, FormsModule, RouterModule, TranslateModule],
imports: [CommonModule, FormsModule, RouterModule, TranslateModule, SharedModule],
exports: [HeaderComponent, FooterComponent, NavigationComponent, LogoComponent],
})
export class CoreModule {

View File

@ -1,4 +1,15 @@
export enum Language {
FR = 'FR',
EN = 'EN',
FR = 'fr',
// BR = 'br',
// CA = 'ca',
// DE = 'de',
// EL = 'el',
EN = 'en',
// ES = 'es',
// GL = 'gl',
// HU = 'hu',
// IT = 'it',
// NL = 'nl',
// OC = 'oc',
// SV = 'sv',
}

View File

@ -5,11 +5,17 @@ export class PollConfiguration {
constructor(
public isAboutDate: boolean = false,
public isProtectedByPassword: boolean = false,
public password: string = '',
public isOwnerNotifiedByEmailOnNewVote: boolean = false,
public isOwnerNotifiedByEmailOnNewComment: boolean = false,
public isMaybeAnswerAvailable: boolean = false,
public areResultsPublic: boolean = true,
public isAllowingtoChangeOwnAnswers: boolean = true,
public whoCanChangeAnswers: string = 'everybody',
public dateCreated: Date = new Date(Date.now()),
public expiresDaysDelay: number = environment.poll.defaultConfig.expiracyInDays,
public expiracyAfterLastModificationInDays: number = environment.poll.defaultConfig
.expiracyAfterLastModificationInDays,
public expires: Date = DateService.addDaysToDate(
environment.poll.defaultConfig.expiracyInDays,
new Date(Date.now())

View File

@ -7,13 +7,15 @@ import { User } from './user.model';
export class Poll {
constructor(
public owner: User,
public slug: string,
public title: string,
public owner: User = new User(),
public slug: string = 'default-slug',
public title: string = 'default title',
public description?: string,
public configuration: PollConfiguration = new PollConfiguration(),
public comments: Comment[] = [],
public choices: Choice[] = []
public choices: Choice[] = [],
public dateChoices: Choice[] = [],
public timeChoices: Choice[] = []
) {}
public getAdministrationUrl(): string {
@ -27,7 +29,7 @@ export class Poll {
public static adaptFromLocalJsonServer(
item: Pick<Poll, 'owner' | 'title' | 'description' | 'slug' | 'configuration' | 'comments' | 'choices'>
): Poll {
const poll = new Poll(
return new Poll(
new User(item.owner.pseudo, item.owner.email, undefined),
item.slug,
item.title,
@ -48,7 +50,5 @@ export class Poll {
return choice;
})
);
return poll;
}
}

View File

@ -3,8 +3,8 @@ import { Poll } from './poll.model';
export class User {
constructor(
public pseudo: string,
public email: string,
public pseudo: string = 'pseudo',
public email: string = 'example@example.com',
public polls: Poll[] = [],
public role?: UserRole,
public token?: string

View File

@ -4,35 +4,77 @@ import { environment } from 'src/environments/environment';
import { Answer } from '../enums/answer.enum';
import { Poll } from '../models/poll.model';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Subscription } from 'rxjs';
import { ToastService } from './toast.service';
import { LoaderService } from './loader.service';
const apiVersion = environment.api.versionToUse;
const currentApiRoutes = environment.api.version[apiVersion];
const apiBaseHref = environment.api.version[apiVersion].baseHref;
const apiEndpoints = environment.api.endpoints;
@Injectable({
providedIn: 'root',
})
export class ApiService {
private useDevLocalServer = true;
private devLocalServerBaseHref = 'http://localhost:8000/';
private axiosInstance: AxiosInstance;
private readonly pollsEndpoint = environment.api.endpoints.polls.name;
private readonly answersEndpoint = environment.api.endpoints.polls.answers.name;
private readonly commentsEndpoint = environment.api.endpoints.polls.comments.name;
private readonly slugsEndpoint = environment.api.endpoints.polls.slugs.name;
private readonly usersEndpoint = environment.api.endpoints.users.name;
private readonly usersPollsEndpoint = environment.api.endpoints.users.polls.name;
private readonly usersPollsSendEmailEndpoint = environment.api.endpoints.users.polls.sendEmail.name;
private readonly pollsEndpoint = apiEndpoints.polls.name;
private readonly answersEndpoint = apiEndpoints.polls.answers.name;
private readonly commentsEndpoint = apiEndpoints.polls.comments.name;
private readonly slugsEndpoint = apiEndpoints.polls.slugs.name;
private readonly usersEndpoint = apiEndpoints.users.name;
private readonly usersPollsEndpoint = apiEndpoints.users.polls.name;
private readonly usersPollsSendEmailEndpoint = apiEndpoints.users.polls.sendEmail.name;
private static loader: LoaderService;
constructor() {
this.axiosInstance = axios.create({ baseURL: environment.api.baseHref });
constructor(private http: HttpClient, private loader: LoaderService, private toastService: ToastService) {
this.axiosInstance = axios.create({ baseURL: apiBaseHref });
this.axiosInstance.defaults.timeout = 2500;
this.axiosInstance.defaults.headers.post['Content-Type'] = 'application/json';
this.axiosInstance.defaults.headers.post['Accept'] = 'application/json';
this.axiosInstance.defaults.headers.post['Charset'] = 'UTF-8';
this.axiosInstance.defaults.headers.post['Access-Control-Allow-Methods'] = 'GET, POST, PUT, DELETE, OPTIONS';
this.axiosInstance.defaults.headers.post['Access-Control-Allow-Origin'] = '*';
console.log('this.axiosInstance.defaults.headers', this.axiosInstance.defaults.headers);
}
//////////////////////
// CREATE OR UPDATE //
//////////////////////
public async createPoll(poll: Poll): Promise<string> {
public async createPoll(poll: Poll): Promise<Subscription> {
// this.loader.setStatus(true);
console.log('config', poll);
// const baseHref = this.useDevLocalServer ? 'http://localhost:8000' : apiBaseHref;
// return this.http
// .post(`${baseHref}${currentApiRoutes['api_new_poll']}`, poll, ApiService.makeHeaders())
// .subscribe(
// (res: Observable<any>) => {
// // redirect to the page to administrate the new poll
// this.toastService.display('Sondage Créé');
//
// console.log('res', res);
// // this.updateCurrentPollFromResponse(res);
//
// this.loader.setStatus(false);
// },
// (e) => {
// ApiService.handleError(e);
// }
// );
try {
return await this.axiosInstance.post(`${this.pollsEndpoint}`, poll);
console.log('currentApiRoutes', currentApiRoutes);
return await this.axiosInstance.post(`${apiBaseHref}${currentApiRoutes['api_new_poll']}`, {
data: poll,
});
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -49,7 +91,7 @@ export class ApiService {
response,
});
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -57,7 +99,7 @@ export class ApiService {
try {
return await this.axiosInstance.post(`${this.pollsEndpoint}/${slug}${this.commentsEndpoint}`, comment);
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -70,7 +112,7 @@ export class ApiService {
const response: AxiosResponse<Poll[]> = await this.axiosInstance.get<Poll[]>(`${this.pollsEndpoint}`);
return response?.data;
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -101,7 +143,7 @@ export class ApiService {
if (error.response?.status === 404) {
return undefined;
} else {
this.handleError(error);
ApiService.handleError(error);
}
}
}
@ -119,7 +161,7 @@ export class ApiService {
if (error.response?.status === 404) {
return true;
} else {
this.handleError(error);
ApiService.handleError(error);
}
}
}
@ -131,7 +173,7 @@ export class ApiService {
`${this.usersEndpoint}/${email}${this.usersPollsEndpoint}${this.usersPollsSendEmailEndpoint}`
);
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -145,7 +187,7 @@ export class ApiService {
);
return response?.data;
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -160,7 +202,7 @@ export class ApiService {
answer,
});
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -172,7 +214,7 @@ export class ApiService {
const response: AxiosResponse = await this.axiosInstance.delete(`${this.pollsEndpoint}/${slug}`);
return response?.status === 204;
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -183,7 +225,7 @@ export class ApiService {
);
return response?.status === 204;
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
@ -194,14 +236,37 @@ export class ApiService {
);
return response?.status === 204;
} catch (error) {
this.handleError(error);
ApiService.handleError(error);
}
}
/////////////////////
// PRIVATE METHODS //
/////////////////////
private handleError(error): void {
/**
* prepare headers like the charset and json type for any call to the backend
* @param bodyContent?
*/
static makeHeaders(bodyContent?: any) {
const headerDict = {
Charset: 'UTF-8',
'Content-Type': 'application/json',
Accept: 'application/json',
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
'Access-Control-Allow-Headers': 'Accept,Accept-Language,Content-Language,Content-Type',
'Access-Control-Allow-Origin': '*',
};
const requestOptions = {
headers: new HttpHeaders(headerDict),
body: bodyContent,
};
return requestOptions;
}
private static handleError(error): void {
// this.loader.setStatus(true);
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx

View File

@ -15,7 +15,7 @@ export class LanguageService {
}
public setLanguage(language: Language): void {
this.translate.use(language.toString().toUpperCase());
this.translate.use(language.toString());
}
public getAvailableLanguages(): string[] {
@ -48,17 +48,19 @@ export class LanguageService {
// set default language
if (!this.translate.currentLang) {
this.setLanguage(Language.EN);
this.setLanguage(Language.FR);
}
}
private setLanguageFromStorage(): void {
console.log('this.storageService.language', this.storageService.language);
if (this.storageService.language && this.translate.getLangs().includes(this.storageService.language)) {
this.setLanguage(this.storageService.language);
}
}
private setLanguageFromBrowser(): void {
const currentBrowserLanguage: Language = this.translate.getBrowserLang().toUpperCase() as Language;
console.log('currentBrowserLanguage', currentBrowserLanguage);
if (this.translate.getLangs().includes(currentBrowserLanguage)) {
this.setLanguage(currentBrowserLanguage);
}

View File

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, Resolve, Router, RouterStateSnapshot } from '@angular/router';
import { BehaviorSubject, Observable } from 'rxjs';
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
import { Answer } from '../enums/answer.enum';
import { Choice } from '../models/choice.model';
@ -10,6 +10,8 @@ import { ApiService } from './api.service';
import { ToastService } from './toast.service';
import { UserService } from './user.service';
import { UuidService } from './uuid.service';
import { HttpClient } from '@angular/common/http';
import { environment } from '../../../environments/environment';
@Injectable({
providedIn: 'root',
@ -19,6 +21,7 @@ export class PollService implements Resolve<Poll> {
public readonly poll: Observable<Poll | undefined> = this._poll.asObservable();
constructor(
private http: HttpClient,
private router: Router,
private apiService: ApiService,
private userService: UserService,
@ -26,6 +29,11 @@ export class PollService implements Resolve<Poll> {
private toastService: ToastService
) {}
/**
* auto fetch a poll when route is looking for one in the administration pattern
* @param route
* @param state
*/
public async resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise<Poll> {
const segments: string[] = state.url.split('/');
const wantedSlug: string = segments.includes('poll') ? segments[segments.indexOf('poll') + 1] : '';
@ -46,6 +54,20 @@ export class PollService implements Resolve<Poll> {
}
}
getAllAvailablePolls() {
const baseHref = environment.api.version.apiV1.baseHref;
console.log('getAllAvailablePolls baseHref', baseHref);
const headers = ApiService.makeHeaders();
console.log('getAllAvailablePolls headers', headers);
try {
this.http.get(`${baseHref}/poll`, headers).subscribe((res: Observable<any>) => {
console.log('getAllAvailablePolls res', res);
});
} catch (e) {
console.log('getAllAvailablePolls e', e);
}
}
public async loadPollBySlug(slug: string): Promise<void> {
console.log('slug', slug);
if (slug) {
@ -59,10 +81,45 @@ export class PollService implements Resolve<Poll> {
this._poll.next(poll);
}
/**
* make a uniq slug for the current poll creation
* @param config
*/
makeSlug(config: Poll): string {
let str = '';
str =
config.configuration.dateCreated.getFullYear() +
'_' +
(config.configuration.dateCreated.getMonth() + 1) +
'_' +
config.configuration.dateCreated.getDate() +
'_' +
config.owner.pseudo +
'_' +
config.title;
str = str.replace(/^\s+|\s+$/g, ''); // trim
str = str.toLowerCase();
// remove accents, swap ñ for n, etc
const from = 'àáäâèéëêìíïîòóöôùúüûñç·/_,:;';
const to = 'aaaaeeeeiiiioooouuuunc------';
for (let i = 0, l = from.length; i < l; i++) {
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
}
str = str
.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
.replace(/\s+/g, '-') // collapse whitespace and replace by -
.replace(/-+/g, '-'); // collapse dashes
return str + '-' + this.uuidService.getUUID();
}
public async saveCurrentPoll(): Promise<void> {
const pollUrl: string = await this.apiService.createPoll(this._poll.getValue());
const pollUrl: Subscription = await this.apiService.createPoll(this._poll.getValue());
// TODO: Maybe handle the url to update currentPoll according to backend response
if (pollUrl) {
console.log('pollUrl', pollUrl);
this.toastService.display('Le sondage a été enregistré.');
} else {
this.toastService.display('Le sondage na été correctement enregistré, veuillez ré-essayer.');
@ -124,4 +181,63 @@ export class PollService implements Resolve<Poll> {
return list;
}
newPollFromForm(form: any): any {
const newpoll = new Poll(
this.userService.getCurrentUser(),
this.uuidService.getUUID(),
form.controls.title.value
);
/**
* convert to API version 1 config poll
*/
const apiV1Poll = {
menuVisible: true,
expiracyDateDefaultInDays: newpoll.configuration.expiresDaysDelay,
deletionDateAfterLastModification: newpoll.configuration.expiracyAfterLastModificationInDays,
pollType: newpoll.configuration.isAboutDate ? 'dates' : 'classic', // classic or dates
title: newpoll.title,
description: newpoll.description,
myName: newpoll.owner.pseudo,
myComment: '',
isAdmin: true, // when we create a poll, we are admin on it
myVoteStack: {},
myTempVoteStack: 0,
myEmail: newpoll.owner.email,
myPolls: [], // list of retrieved polls from the backend api
/*
date specific poll, we have the choice to setup different hours (timeList) for all possible dates (dateList), or use the same hours for all dates
*/
allowSeveralHours: 'true',
// access
visibility: newpoll.configuration.areResultsPublic, // visible to one with the link:
voteChoices: newpoll.configuration.isMaybeAnswerAvailable ? 'yes, maybe, no' : 'yes', // possible answers to a vote choice: only "yes", "yes, maybe, no"
creationDate: new Date(),
expirationDate: '', // expiracy date
voteStackId: null, // id of the vote stack to update
pollId: null, // id of the current poll when created. data given by the backend api
pollSlug: null, // id of the current poll when created. data given by the backend api
currentPoll: null, // current poll selected with createPoll or getPoll of ConfigService
passwordAccess: newpoll.configuration.isProtectedByPassword,
password: newpoll.configuration.password,
customUrl: newpoll.slug, // custom slug in the url, must be unique
customUrlIsUnique: null, // given by the backend
urlSlugPublic: null,
urlPublic: null,
urlAdmin: null,
adminKey: '', // key to change config of the poll
owner_modifier_token: '', // key to change a vote stack
canModifyAnswers: newpoll.configuration.isAllowingtoChangeOwnAnswers, // bool for the frontend selector
whoModifiesAnswers: newpoll.configuration.whoCanChangeAnswers, // everybody, self, nobody (: just admin)
whoCanChangeAnswers: newpoll.configuration.whoCanChangeAnswers, // everybody, self, nobody (: just admin)
dateList: newpoll.dateChoices, // sets of days as strings, config to set identical time for days in a special days poll
timeList: newpoll.timeChoices, // ranges of time expressed as strings
answers: newpoll.choices,
// modals
displayConfirmVoteModalAdmin: false,
};
console.log('apiV1Poll', apiV1Poll);
return apiV1Poll;
}
}

View File

@ -10,4 +10,14 @@ export class UuidService {
public getUUID(): string {
return this.uid();
}
/**
* generate unique id to have a default url for future poll
*/
getLongUUID(): string {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
const r = (Math.random() * 16) | 0,
v = c == 'x' ? r : (r & 0x3) | 0x8;
return v.toString(16);
});
}
}

View File

@ -1,12 +1,5 @@
<div class="columns">
<div class="column has-text-centered">
<h1>Administration</h1>
</div>
</div>
<div class="columns">
<div class="columns administration">
<div class="column">
<app-admin-form [poll]="poll"></app-admin-form>
<h1 class="title is-1"><i class="fa fa-calendar" aria-hidden="true"></i> {{ 'dates.title' | translate }}</h1>
</div>
</div>

View File

@ -5,7 +5,6 @@ import { Subscription } from 'rxjs';
import { Poll } from '../../core/models/poll.model';
import { ModalService } from '../../core/services/modal.service';
import { UserService } from '../../core/services/user.service';
import { SettingsComponent } from '../../shared/components/settings/settings.component';
@Component({
selector: 'app-administration',
@ -13,8 +12,7 @@ import { SettingsComponent } from '../../shared/components/settings/settings.com
styleUrls: ['./administration.component.scss'],
})
export class AdministrationComponent implements OnInit, OnDestroy {
public poll: Poll;
public form: Object;
public poll: Poll = new Poll();
private routeSubscription: Subscription;
constructor(private route: ActivatedRoute, private userService: UserService, private modalService: ModalService) {}

View File

@ -9,6 +9,7 @@ import { AdministrationComponent } from './administration.component';
import { StepperComponent } from './stepper/stepper.component';
import { NamingComponent } from './naming/naming.component';
import { FormComponent } from './form/form.component';
import { DateValueAccessorModule } from 'angular-date-value-accessor';
@NgModule({
declarations: [AdministrationComponent, StepperComponent, NamingComponent, FormComponent],
@ -18,6 +19,7 @@ import { FormComponent } from './form/form.component';
ReactiveFormsModule,
SharedModule,
TranslateModule.forChild({ extend: true }),
DateValueAccessorModule,
],
})
export class AdministrationModule {}

View File

@ -1,21 +1,169 @@
<div class="admin-form">
<h1 i18n>
<h1>
{{ 'creation.title' | translate }}
</h1>
<span class="pre-selector" i18n>
{{ 'creation.want' | translate }}
</span>
<button class="btn btn--warning">
Reset all
<img src="assets/img/undraw_Moving_twwf.svg" alt="image WIP" />
<button class="btn btn--warning" (click)="askInitFormDefault()">
<i class="fa fa-refresh"></i>
Tout réinitialiser
</button>
<button class="btn is-success" (click)="createPoll()">
<i class="fa fa-save"></i>
Enregistrer le sondage
</button>
<button class="btn is-default" (click)="automaticSlug()">
<i class="fa fa-save"></i>
Slug automatique
</button>
<div class="simple">
<form [formGroup]="pollFormGroup">
<label for="title">Titre</label>
<div class="well">
{{ poll.slug }}
</div>
<div class="has-background-danger" *ngIf="!form.valid">
le formulaire est invalide
<pre>
{{ form.errors | json }}
</pre
>
</div>
<div class="dates-list">
<div class="title">
<span class="count-dates">
{{ timeList.length }}
</span>
<span class="count-dates-txt">
{{ 'dates.count_time' | translate }}
(pour chaque jour)
</span>
</div>
<div class="actions">
<button
(click)="addTime()"
*ngIf="'false' === allowSeveralHours"
class="btn btn--primary"
id="add_time_button"
>
<i class="fa fa-plus" aria-hidden="true"></i>
{{ 'dates.add_time' | translate }}
</button>
<button
(click)="removeAllTimes()"
*ngIf="'false' === allowSeveralHours"
class="btn btn--warning"
id="remove_time_button"
>
<i class="fa fa-trash" aria-hidden="true"></i>
Aucune plage horaire
</button>
<button
(click)="resetTimes()"
*ngIf="'false' === allowSeveralHours"
class="btn btn--warning"
id="reset_time_button"
>
<i class="fa fa-refresh" aria-hidden="true"></i>
réinitialiser
</button>
</div>
<div *ngIf="'false' === allowSeveralHours" class="identical-dates">
<div cdkDropList class="example-list" (cdkDropListDropped)="drop($event)">
<div *ngFor="let time of timeList; index as id" class="time-choice" cdkDrag>
<label for="timeChoices_{{ id }}">
<i class="fa fa-clock-o" aria-hidden="true"></i>
</label>
<input
[(ngModel)]="time.literal"
name="timeChoices_{{ id }}"
type="text"
id="timeChoices_{{ id }}"
/>
<button (click)="time.timeList.splice(id, 1)" class="btn btn-warning">
<i class="fa fa-times" aria-hidden="true"></i>
</button>
</div>
</div>
</div>
<hr />
<span class="count-dates title">
{{ dateList.length }}
</span>
<span>
{{ 'dates.count_dates' | translate }}
</span>
<button class="btn btn--primary" (click)="addChoice()">
{{ 'dates.add' | translate }}
</button>
<div *ngFor="let choice of dateList; index as id" class="date-choice">
{{ id }})
<input
[(ngModel)]="choice.date_object"
name="dateChoices_{{ id }}"
id="dateChoices_{{ id }}"
useValueAsDate
type="date"
/>
<button (click)="dateList.splice(id, 1)" class="btn btn-warning">
<i class="fa fa-times" aria-hidden="true"></i>
</button>
<button (click)="addTimeToDate(choice, id)" *ngIf="'true' === allowSeveralHours" class="btn btn--primary">
{{ 'dates.add_time' | translate }}
</button>
<div *ngIf="'true' === allowSeveralHours" class="several-times">
<div *ngFor="let timeItem of choice.timeList; index as idTime" class="time-choice">
<input
[(ngModel)]="timeItem.literal"
name="dateTime_{{ id }}_Choices_{{ idTime }}"
id="dateTime_{{ id }}_Choices_{{ idTime }}"
type="text"
/>
<button (click)="choice.timeList.splice(idTime, 1)" class="btn btn-warning">
<i class="fa fa-times" aria-hidden="true"></i>
</button>
</div>
</div>
</div>
</div>
<hr />
<form [formGroup]="form">
<div class="form-field">
<span class="pre-selector">
{{ 'creation.want' | translate }}
</span>
<div class="kind-of-poll columns">
<div class="column">
<button
class="btn-block btn"
[ngClass]="{ 'is-primary': form.controls.isAboutDate.value }"
(click)="form.controls.isAboutDate.setValue(true)"
>
<i class="fa fa-calendar"></i>
{{ 'creation.kind.date' | translate }}
</button>
</div>
<div class="column">
<button
class="btn-block btn btn-default"
[ngClass]="{ 'is-primary': !form.controls.isAboutDate.value }"
(click)="form.controls.isAboutDate.setValue(false)"
>
<i class="fa fa-stats"></i>
{{ 'creation.kind.classic' | translate }}
</button>
</div>
</div>
<span>
{{ 'creation.choose_title' | translate }}
</span>
<label class="hidden" for="title">Titre</label>
<input
#title
matInput
placeholder="title posée, sujet"
[placeholder]="'creation.choose_title_placeholder' | translate"
formControlName="title"
id="title"
autofocus="autofocus"
@ -32,8 +180,148 @@
>
<i class="fa fa-close"></i>
</button>
</div>
<label for="descr">Description</label>
<fieldset class="date-kind">
<!-- choix spécialement pour les dates-->
</fieldset>
<button
(click)="showDateInterval = !showDateInterval"
[ngClass]="{ active: showDateInterval }"
class="btn btn--primary"
id="toggle_interval_button"
>
<i class="fa fa-clock-o" aria-hidden="true"></i>
{{ 'dates.add_interval' | translate }}
</button>
<section *ngIf="showDateInterval" class="date-interval form-row">
<h2>{{ 'dates.add_interval' | translate }}</h2>
<div class="columns">
<div class="column">
{{ 'dates.interval_propose' | translate }}
</div>
<div class="column">
<label for="start_interval" class="hidden">start</label>
<input id="start_interval" (change)="countDays()" formControlName="startDateInterval" type="date" />
</div>
</div>
<div class="columns">
<div class="column">
{{ 'dates.interval_span' | translate }}
</div>
<div class="column">
<label for="end_interval" class="hidden">end</label>
<input id="end_interval" formControlName="endDateInterval" type="date" />
</div>
</div>
<button (click)="addIntervalOfDates()" class="btn btn-block btn--primary">
<i class="fa fa-plus" aria-hidden="true"></i>
{{ 'dates.interval_button' | translate }}
{{ intervalDays }}
{{ 'dates.interval_button_dates' | translate }}
</button>
<hr />
</section>
<div class="form-field">
<h2>
{{ 'choices.title' | translate }}
</h2>
{{ 'dates.add' | translate }}
<p>
<i>
{{ 'choices.helper' | translate }}
</i>
</p>
{{ 'choices.answer_preset_1' | translate }}
{{ 'choices.add' | translate }}
{{ 'choices.continue' | translate }}
<span>
<span class="columns">
<span class="column">
<button class="btn is-primary" (click)="addChoice()">
<i class="fa fa-plus"></i>
Ajouter un choix
</button>
</span>
<span class="column pull-right">
<button class="btn is-warning" (click)="reinitChoices()">
<i class="fa fa-recycle"></i>
Réinitialiser
</button>
</span>
</span>
<p class="hint">
{{ 'creation.choices_hint' | translate }}
</p>
<span *ngFor="let choice of choices.controls; let i = index">
<div class="form-row" [formGroup]="choice">
<div class="columns">
<div class="column">
<button class="btn btn-warning" (click)="deleteChoiceField(i)">
<i class="fa fa-times"></i>
</button>
{{ i * 1 + 1 }})
</div>
<div class="column">
<label [for]="'choice_label_' + i" class="hidden">label</label>
<input
formControlName="label"
[id]="'choice_label_' + i"
placeholder="Enter a choice description"
(keyup)="keyOnChoice($event, i)"
(keyup.backspace)="deleteChoiceField(i)"
/>
<br />
<label [for]="'image_url_' + i" class="hidden">image Url</label>
<input
formControlName="imageUrl"
[id]="'image_url_' + i"
placeholder="URL de l' image"
(keyup)="keyOnChoice($event, i)"
(keyup.backspace)="deleteChoiceField(i)"
/>
</div>
</div>
</div>
</span>
</span>
</div>
<div>
<label class="" for="creatorEmail">
<span>
{{ 'creation.name' | translate }}
</span>
</label>
<label class="hidden" for="creatorPseudo">
<span>
{{ 'creation.email' | translate }}
</span>
</label>
<input #title matInput placeholder="pseudo" formControlName="creatorPseudo" id="creatorPseudo" required />
<input
#title
matInput
placeholder="mon-email@example.com"
formControlName="creatorEmail"
id="creatorEmail"
required
/>
</div>
<br />
<button class="btn is-info" (click)="advancedDisplayEnabled = !advancedDisplayEnabled">
<i class="fa fa-save"></i>
{{ 'creation.advanced' | translate }}
</button>
<hr />
<fieldset class="complete well" *ngIf="advancedDisplayEnabled">
<h2>{{ 'creation.advanced' | translate }}</h2>
<label for="descr">Description (optionnel)</label>
<textarea
#description
matInput
@ -52,45 +340,38 @@
>
<i class="fa fa-close"></i>
</button>
<h2>Choix de réponses</h2>
<pre class="debug padded warning">
choicesFormArray :
{{ choicesFormArray | json }}
</pre
>
<br />
<label for="slug"
>Url pour les participants
<button
mat-button
*ngIf="slug.value"
matSuffix
mat-icon-button
aria-label="Clear"
(click)="slug.value = ''"
>
<i class="fa fa-close"></i>
</button>
</label>
<br />
<span
>{{ urlPrefix }}
<strong>
{{ slug.value }}
{{ form.controls.slug.value }}
</strong>
</span>
<app-copy-text [textToCopy]="form.controls.slug.value"></app-copy-text>
<button
mat-button
*ngIf="form.controls.slug.value"
matSuffix
mat-icon-button
aria-label="Clear"
(click)="slug.value = ''"
></button>
<input #slug matInput id="slug" placeholder="Url" formControlName="slug" required />
<br />
</form>
</div>
<div class="complete" *ngIf="longFormVersionEnabled">
<form [formGroup]="configurationFormGroup">
<h2>Version complète du formulaire</h2>
<mat-form-field appearance="outline" class="is-flex">
<div appearance="outline" class="is-not-flex">
<mat-label>Nombre de jours avant expiration</mat-label>
<input
#expiracy
id="expiracy"
matInput
type="number"
placeholder="Nombre de jours avant expiration"
@ -107,39 +388,34 @@
>
<i class="fa fa-close"></i>
</button>
</mat-form-field>
<mat-checkbox class="is-flex" formControlName="areResultsPublic">
</div>
<mat-checkbox class="is-not-flex" formControlName="areResultsPublic">
Les participants pourront consulter les résultats
</mat-checkbox>
<mat-checkbox class="is-flex" formControlName="isAboutDate">
<mat-checkbox class="is-not-flex" formControlName="isAboutDate">
Les choix possibles concerneront des dates
</mat-checkbox>
<mat-checkbox class="is-flex" formControlName="isProtectedByPassword">
<mat-checkbox class="is-not-flex" formControlName="isProtectedByPassword">
Le sondage sera protégé par un mot de passe
</mat-checkbox>
<mat-checkbox class="is-flex" formControlName="isOwnerNotifiedByEmailOnNewVote">
<mat-checkbox class="is-not-flex" formControlName="isOwnerNotifiedByEmailOnNewVote">
Vous recevrez un mail à chaque nouvelle participation
</mat-checkbox>
<mat-checkbox class="is-flex" formControlName="isOwnerNotifiedByEmailOnNewComment">
<mat-checkbox class="is-not-flex" formControlName="isOwnerNotifiedByEmailOnNewComment">
Vous recevrez un mail à chaque nouveau commentaire
</mat-checkbox>
<mat-checkbox class="is-flex" formControlName="isMaybeAnswerAvailable">
<mat-checkbox class="is-not-flex" formControlName="isMaybeAnswerAvailable">
La réponse « peut-être » sera disponible
</mat-checkbox>
<button
mat-button
(click)="createPoll()"
[disabled]="!pollFormGroup.valid || !configurationFormGroup.valid"
>
</fieldset>
<div class="columns">
<div class="column"></div>
<div class="column">
<button class="btn is-success" (click)="createPoll()" [disabled]="!form.valid || !form.valid">
<i class="fa fa-save"></i>
Enregistrer le sondage
</button>
</div>
</div>
</form>
</div>
<pre class="debug padded warning">
poll :
{{ poll | json }}
</pre
>
</div>

View File

@ -1,7 +1,86 @@
@import '../../../../styles/variables';
:host {
input,
textarea {
padding: 0.5em;
border: solid #eee;
width: 90%;
}
.form-field {
display: block;
margin-top: 1em;
}
.form-row {
margin-top: 0.5em;
margin-bottom: 0.25em;
border: solid 1px #ddd;
border-left: solid 3px $primary_color;
padding-left: 1em;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.fa {
margin-right: 1ch;
&.fa-times,
&.fa-trash {
margin-right: 0;
}
}
.example-list {
width: 500px;
max-width: 100%;
border: solid 1px #ccc;
min-height: 60px;
display: block;
background: white;
border-radius: 4px;
overflow: hidden;
}
.example-box {
padding: 20px 10px;
border-bottom: solid 1px #ccc;
color: rgba(0, 0, 0, 0.87);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
cursor: move;
background: white;
font-size: 14px;
}
.cdk-drag-preview {
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drag-placeholder {
opacity: 0;
}
.cdk-drag-animating {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.example-box:last-child {
border: none;
}
.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.ng-touched.ng-invalid {
border-left: $danger 3px solid;
padding-left: 1em;
}
.ng-touched.ng-valid {
border-left: $success 3px solid;
padding-left: 1em;
}
}

View File

@ -1,10 +1,14 @@
import { Component, Input, OnInit } from '@angular/core';
import { ChangeDetectorRef, Component, Inject, Input, OnInit } from '@angular/core';
import { Poll } from '../../../core/models/poll.model';
import { FormArray, FormBuilder, FormGroup, Validators } from '@angular/forms';
import { UuidService } from '../../../core/services/uuid.service';
import { DateService } from '../../../core/services/date.service';
import { ApiService } from '../../../core/services/api.service';
import { Choice } from '../../../core/models/choice.model';
import { ToastService } from '../../../core/services/toast.service';
import { PollService } from '../../../core/services/poll.service';
import { DateUtilities } from '../../old-stuff/config/DateUtilities';
import { DOCUMENT } from '@angular/common';
import { DateChoice, otherDefaultDates } from '../../old-stuff/config/defaultConfigs';
import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop';
@Component({
selector: 'app-admin-form',
@ -14,70 +18,310 @@ import { Choice } from '../../../core/models/choice.model';
export class FormComponent implements OnInit {
@Input()
public poll?: Poll;
public pollFormGroup: FormGroup;
public configurationFormGroup: FormGroup;
public choicesFormArray: FormArray; // possible choices to answer
public longFormVersionEnabled = true;
public form: FormGroup;
public urlPrefix: string = window.location.origin + '/participation/';
public advancedDisplayEnabled = false;
public showDateInterval = true;
public allowSeveralHours = true;
startDateInterval: string;
endDateInterval: string;
intervalDays: any;
intervalDaysDefault = 7;
dateList: any = otherDefaultDates; // sets of days as strings, config to set identical time for days in a special days poll
timeList: DateChoice[] = otherDefaultDates; // ranges of time expressed as strings
constructor(private fb: FormBuilder, private uuidService: UuidService, private apiService: ApiService) {}
constructor(
private fb: FormBuilder,
private cd: ChangeDetectorRef,
private uuidService: UuidService,
private toastService: ToastService,
private pollService: PollService,
public dateUtilities: DateUtilities,
private apiService: ApiService,
@Inject(DOCUMENT) private document: any
) {}
drop(event: CdkDragDrop<string[]>) {
// moveItemInArray(this.choices, event.previousIndex, event.currentIndex);
}
get choices(): FormArray {
return this.form.get('choices') as FormArray;
}
ngOnInit(): void {
this.pollFormGroup = this.fb.group({
title: [this.poll ? this.poll.title : '', [Validators.required]],
slug: [this.poll ? this.poll.slug : this.uuidService.getUUID(), [Validators.required]],
description: [this.poll ? this.poll.description : ''],
});
// add dynamically elements to add choices
this.choicesFormArray = this.fb.array([
{
choices: this.poll.choices.forEach((elem: Choice) => {
return {
label: [elem.label, [Validators.required]],
imageUrl: [elem.imageUrl, null],
};
}),
},
]);
this.configurationFormGroup = this.fb.group({
isAboutDate: [this.poll ? this.poll.configuration.isAboutDate : false, [Validators.required]],
isProtectedByPassword: [
this.poll ? this.poll.configuration.isProtectedByPassword : false,
[Validators.required],
],
isOwnerNotifiedByEmailOnNewVote: [
this.poll ? this.poll.configuration.isOwnerNotifiedByEmailOnNewVote : false,
[Validators.required],
],
isOwnerNotifiedByEmailOnNewComment: [
this.poll ? this.poll.configuration.isOwnerNotifiedByEmailOnNewComment : false,
[Validators.required],
],
isMaybeAnswerAvailable: [
this.poll ? this.poll.configuration.isMaybeAnswerAvailable : false,
[Validators.required],
],
areResultsPublic: [this.poll ? this.poll.configuration.areResultsPublic : true, [Validators.required]],
expiracyNumberOfDays: [
this.poll ? DateService.diffInDays(new Date(), this.poll.configuration.expires) : 60,
[Validators.required],
],
});
this.initFormDefault();
// TO remove after
// this.createPoll();
const pollsAvailable = this.pollService.getAllAvailablePolls();
console.log('pollsAvailable', pollsAvailable);
}
public createPoll(): void {
if (this.pollFormGroup.valid && this.configurationFormGroup.valid) {
console.log('Le sondage est correctement rempli, prêt à enregistrer.');
// TODO : save the poll
this.apiService.createPoll(this.poll);
console.log('this.form', this.form);
const newpoll = this.pollService.newPollFromForm(this.form);
console.log('newpoll', newpoll);
this.apiService.createPoll(newpoll);
// if (this.form.valid) {
// console.log('Le sondage est correctement rempli, prêt à enregistrer.');
// const newpoll = this.pollService.newPollFromForm(this.form);
// // TODO : save the poll
// this.apiService.createPoll(newpoll);
// } else {
// this.toastService.display('invalid form');
// }
}
public updateSlug(): void {
const newValueFormatted = 'TODO';
this.form.patchValue({ slug: newValueFormatted });
}
addChoice(optionalLabel = ''): void {
const newControlGroup = this.fb.group({
label: this.fb.control('', [Validators.required]),
imageUrl: ['', [Validators.required]],
});
if (optionalLabel) {
newControlGroup.patchValue({
label: optionalLabel,
imageUrl: 'mon url',
});
}
this.choices.push(newControlGroup);
this.cd.detectChanges();
console.log('this.choices.length', this.choices.length);
this.focusOnChoice(this.choices.length - 1);
}
focusOnChoice(index): void {
const selector = '#choice_label_' + index;
const elem = this.document.querySelector(selector);
if (elem) {
elem.focus();
}
}
public updateSlug() {
let newValueFormatted = 'TODO';
this.pollFormGroup.patchValue({ slug: newValueFormatted });
deleteChoiceField(index: number): void {
if (this.choices.length !== 1) {
this.choices.removeAt(index);
}
}
reinitChoices(): void {
this.choices.setValue([]);
}
initFormDefault(showDemoValues = true): void {
this.form = this.fb.group({
title: ['', [Validators.required, Validators.minLength(12)]],
creatorPseudo: ['', [Validators.required]],
creatorEmail: ['', [Validators.required]],
slug: [this.uuidService.getUUID(), [Validators.required]],
description: ['', [Validators.required]],
choices: new FormArray([]),
whoModifiesAnswers: ['', [Validators.required]],
whoCanChangeAnswers: ['', [Validators.required]],
isAboutDate: [true, [Validators.required]],
startDateInterval: ['', [Validators.required]],
endDateInterval: ['', [Validators.required]],
isProtectedByPassword: [false, [Validators.required]],
isOwnerNotifiedByEmailOnNewVote: [false, [Validators.required]],
isOwnerNotifiedByEmailOnNewComment: [false, [Validators.required]],
isMaybeAnswerAvailable: [false, [Validators.required]],
areResultsPublic: [true, [Validators.required]],
expiracyNumberOfDays: [60, [Validators.required, Validators.min(0)]],
});
console.log('this.form ', this.form);
this.setDefaultDatesForInterval();
if (showDemoValues) {
this.setDemoValues();
}
}
/**
* default interval of dates proposed is from today to 7 days more
*/
setDefaultDatesForInterval(): void {
const dateCurrent = new Date();
const dateJson = dateCurrent.toISOString();
this.startDateInterval = dateJson.substring(0, 10);
this.endDateInterval = this.dateUtilities
.addDaysToDate(this.intervalDaysDefault, dateCurrent)
.toISOString()
.substring(0, 10);
this.form.patchValue({
startDateInterval: this.startDateInterval,
endDateInterval: this.endDateInterval,
});
this.countDays();
}
/**
* add example values to the form
*/
setDemoValues(): void {
this.addChoice('orange');
this.addChoice('raisin');
this.addChoice('abricot');
this.form.patchValue({
title: 'mon titre',
description: 'répondez SVP <3 ! *-* ',
slug: this.uuidService.getUUID(),
creatorPseudo: 'Chuck Norris',
creatorEmail: 'chucknorris@example.com',
isAboutDate: true,
whoModifiesAnswers: 'everybody',
whoCanChangeAnswers: 'everybody',
isProtectedByPassword: false,
isOwnerNotifiedByEmailOnNewVote: false,
isOwnerNotifiedByEmailOnNewComment: false,
isMaybeAnswerAvailable: false,
areResultsPublic: true,
expiracyNumberOfDays: 60,
});
this.automaticSlug();
}
askInitFormDefault(): void {
this.initFormDefault(false);
this.toastService.display('formulaire réinitialisé');
}
countDays(): void {
this.intervalDays = this.dateUtilities.countDays(
this.dateUtilities.parseInputDateToDateObject(this.startDateInterval),
this.dateUtilities.parseInputDateToDateObject(this.endDateInterval)
);
this.cd.detectChanges();
}
/**
* add all the dates between the start and end dates in the interval section
*/
addIntervalOfDates(): void {
const newIntervalArray = this.dateUtilities.getDatesInRange(
this.dateUtilities.parseInputDateToDateObject(this.startDateInterval),
this.dateUtilities.parseInputDateToDateObject(this.endDateInterval),
1
);
const converted = [];
newIntervalArray.forEach((element) => {
converted.push({
literal: element.literal,
date_object: element.date_object,
timeList: [],
});
});
this.dateList = [...new Set(converted)];
// add only dates that are not already present with a Set of unique items
console.log('this.dateList', this.dateList);
this.showDateInterval = false;
this.form.patchValue({ choices: this.dateList });
// this.dateList.forEach(elem=>{
// const newControlGroup = this.fb.group({
// label: this.fb.control('', [Validators.required]),
// imageUrl: ['', [Validators.required]],
// });
//
// this.choices.push(newControlGroup);
// })
this.toastService.display(`les dates ont été ajoutées aux réponses possibles.`);
}
/**
* handle keyboard shortcuts
* @param $event
* @param choice_number
*/
keyOnChoice($event: KeyboardEvent, choice_number: number): void {
$event.preventDefault();
console.log('this.choices.length', this.choices.length);
console.log('choice_number', choice_number);
const lastChoice = this.choices.length - 1 === choice_number;
// reset field with Ctrl + D
// add a field with Ctrl + N
// go to previous choice with arrow up
// go to next choice with arrow down
console.log('$event', $event);
if ($event.key == 'ArrowUp' && choice_number > 0) {
this.focusOnChoice(choice_number - 1);
}
if ($event.key == 'ArrowDown') {
// add a field if we are on the last choice
if (lastChoice) {
this.addChoice();
this.toastService.display('choix ajouté par raccourci "flèche bas"');
} else {
this.focusOnChoice(choice_number + 1);
}
}
if ($event.ctrlKey && $event.key == 'Backspace') {
this.deleteChoiceField(choice_number);
this.toastService.display('choix supprimé par raccourci "Ctrl + retour"');
this.cd.detectChanges();
this.focusOnChoice(Math.min(choice_number - 1, 0));
}
if ($event.ctrlKey && $event.key == 'Enter') {
// go to other fields
const elem = this.document.querySelector('#creatorEmail');
if (elem) {
elem.focus();
}
}
}
/**
* change time spans
*/
addTime() {
this.timeList.push({
literal: '',
timeList: [],
date_object: new Date(),
});
}
removeAllTimes() {
this.timeList = [];
}
resetTimes() {
this.timeList = otherDefaultDates;
}
/**
* add a time period to a specific date choice,
* focus on the new input
* @param config
* @param id
*/
addTimeToDate(config: any, id: number) {
this.timeList.push({
literal: '',
timeList: [],
date_object: new Date(),
});
const selector = '[ng-reflect-choice_label="dateTime_' + id + '_Choices_' + (this.timeList.length - 1) + '"]';
this.cd.detectChanges();
const elem = this.document.querySelector(selector);
if (elem) {
elem.focus();
}
}
/**
* set the poll slug from other data of the poll
*/
automaticSlug() {
this.poll.slug = this.pollService.makeSlug(this.poll);
}
}

View File

@ -40,8 +40,9 @@ export class DateUtilities {
* @param d1
* @param d2
*/
dayDiff(d1: Date, d2: Date): number {
return Number(d2.getTime() - d1.getTime() / 31536000000);
dayDiff(d1: Date, d2: Date): any {
const div = 1000 * 3600 * 24;
return Math.abs((d2.getTime() - d1.getTime()) / div).toFixed(0);
}
/**
@ -57,7 +58,24 @@ export class DateUtilities {
].join('-');
}
parseInputDateToDateObject(inputDateString: string) {
const boom = inputDateString.split('-');
const converted = new Date(boom['0'], boom['1'] - 1, boom['2']);
console.log('converted', converted);
return converted;
}
getDoubleDigits(str) {
return ('00' + str).slice(-2);
}
countDays(startDateInterval: Date, endDateInterval: Date): number {
// compute the number of days in the date interval
if (endDateInterval && startDateInterval) {
return this.dayDiff(endDateInterval, startDateInterval);
}
return 0;
}
}

View File

@ -11,7 +11,7 @@ export const DATE_VALUE_ACCESSOR: any = {
* The accessor for writing a value and listening to changes on a date input element
*
* ### Example
* `<input type="date" name="myBirthday" ngModel useValueAsDate>`
* `<input type="date" choice_label="myBirthday" ngModel useValueAsDate>`
*/
@Directive({
// this selector changes the previous behavior silently and might break existing code

View File

@ -55,7 +55,7 @@ export class DatesComponent extends BaseComponent implements OnInit {
date_object: new Date(),
timeList: [],
});
const selector = '[ng-reflect-name="dateChoices_' + (this.config.dateList.length - 1) + '"]';
const selector = '["choice_label_' + (this.config.dateList.length - 1) + '"]';
this.cd.detectChanges();
const elem = this.document.querySelector(selector);
if (elem) {
@ -90,7 +90,7 @@ export class DatesComponent extends BaseComponent implements OnInit {
*/
addTimeToDate(config: any, id: number) {
config.timeList.push({ literal: '' });
const selector = '[ng-reflect-name="dateTime_' + id + '_Choices_' + (config.timeList.length - 1) + '"]';
const selector = '[ng-reflect-choice_label="dateTime_' + id + '_Choices_' + (config.timeList.length - 1) + '"]';
this.cd.detectChanges();
const elem = this.document.querySelector(selector);
if (elem) {

View File

@ -105,7 +105,7 @@
<label for="">Un label pour les labelliser tous</label>
<h3>Input name</h3>
<h3>Input choice_label</h3>
<input type="name" name="" id="" /><br />
<input type="name" name="" id="" value="texte" />
@ -201,7 +201,7 @@
</article>
<article>
<h2>Label + input name</h2>
<h2>Label + input choice_label</h2>
<label for="test-text">Ceci est un label un peu long mais pas trop</label>
<input type="name" name="test-text" id="test-text" />
</article>
@ -223,7 +223,7 @@
</article>
<article>
<h2>Input name with info</h2>
<h2>Input choice_label with info</h2>
<a href="https://sketch.cloud/s/00A80/a/MAl5q7">like here</a>
</article>

View File

@ -36,7 +36,7 @@
</div>
<div>
<label for="my_name"> {{ 'creation.name' | translate }} : </label>
<label for="my_name"> {{ 'creation.choice_label' | translate }} : </label>
<input
[(ngModel)]="config.myName"
id="my_name"

View File

@ -17,7 +17,7 @@ interface VoteChoice {
/**
* each vote choice takes a configuration from the container of all choices.
* this component is used to select a date choice, or a name answer
* this component is used to select a date choice, or a choice_label answer
*/
@Component({
selector: 'app-voting-choice',

View File

@ -164,7 +164,7 @@ export class ConfigService extends PollConfig {
}
/**
* get one poll by its slug name
* get one poll by its slug choice_label
* @param url
*/
getPollByURL(url: string) {

View File

@ -26,7 +26,10 @@
<div class="columns">
<div class="column">
<form (submit)="sendRetrieveEmail()">
<input type="email" autofocus="autofocus" placeholder="contact@exemple.com" />
<label for="search_field">
<img src="assets/img/undraw_prototyping_process_rswj.svg" alt="image my polls" />
<input type="email" id="search_field" autofocus="autofocus" placeholder="contact@exemple.com" />
</label>
<button class="button is-primary">
envoyez-moi la liste par email
</button>

View File

@ -1,14 +1,11 @@
<div class="columns">
<div class="column">
<p>Langue</p>
</div>
<div class="column">
<div class="selector">
<img src="assets/img/icone-langue.svg" alt="langue" />
<div class="buttons has-addons">
<select class="select" [(ngModel)]="currentLang">
<label for="lang_selector" class="hidden">{{ 'selector.lang' | translate }}</label>
<select class="select" id="lang_selector" (change)="setLang()" [(ngModel)]="currentLang">
<option *ngFor="let language of availableLanguages" value="{{ language }}">
{{ 'LANGUAGES.' + language | translate }}
{{ language }} - {{ 'LANGUAGES.' + language | translate }}
</option>
</select>
</div>
</div>
</div>

View File

@ -10,7 +10,7 @@ import { LanguageService } from '../../../../core/services/language.service';
templateUrl: './language-selector.component.html',
styleUrls: ['./language-selector.component.scss'],
})
export class LanguageSelectorComponent implements OnInit, DoCheck {
export class LanguageSelectorComponent implements OnInit {
public currentLang: Language;
public availableLanguages: string[] = [];
@ -21,7 +21,7 @@ export class LanguageSelectorComponent implements OnInit, DoCheck {
this.currentLang = this.languageService.getLangage();
}
ngDoCheck(): void {
setLang(): void {
this.languageService.setLanguage(this.currentLang);
}
}

View File

@ -1,7 +1,4 @@
<div class="columns">
<div class="column">
<p>Theme</p>
</div>
<div class="column">
<div class="buttons has-addons">
<button

View File

@ -0,0 +1,5 @@
<button (click)="copy()" class="btn btn--primary btn--outline" id="copyLink">
<i class="fa fa-copy" aria-hidden="true"></i>
{{ 'admin.copy_link' | translate }}
<span *ngIf="displayContentToCopy"> " {{ textToCopy }}" </span>
</button>

View File

@ -0,0 +1,24 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CopyTextComponent } from './copy-text.component';
describe('CopyTextComponent', () => {
let component: CopyTextComponent;
let fixture: ComponentFixture<CopyTextComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [CopyTextComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CopyTextComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,23 @@
import { Component, Input, OnInit } from '@angular/core';
import { ClipboardService } from 'ngx-clipboard';
import { ToastService } from '../../../../core/services/toast.service';
@Component({
selector: 'app-copy-text',
templateUrl: './copy-text.component.html',
styleUrls: ['./copy-text.component.scss'],
})
export class CopyTextComponent implements OnInit {
@Input() public textToCopy: string;
public displayContentToCopy = false;
constructor(private _clipboardService: ClipboardService, private toastService: ToastService) {}
ngOnInit(): void {}
public copy(): void {
this._clipboardService.copyFromContent(this.textToCopy);
this.toastService.display(`Texte copié : ${this.textToCopy}`);
}
}

View File

@ -0,0 +1,3 @@
<button class="erase btn btn--warning" *ngIf="inputModel.length" (click)="eraseInput()">
<i class="fa fa-times" aria-hidden="true"></i>
</button>

View File

@ -0,0 +1,24 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ErasableInputComponent } from './erasable-input.component';
describe('ErasableInputComponent', () => {
let component: ErasableInputComponent;
let fixture: ComponentFixture<ErasableInputComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ErasableInputComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ErasableInputComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,22 @@
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
@Component({
selector: 'app-erasable-input',
templateUrl: './erasable-input.component.html',
styleUrls: ['./erasable-input.component.scss'],
})
export class ErasableInputComponent implements OnInit {
@Output() inputModelChange = new EventEmitter();
@Input() inputModel;
constructor() {}
ngOnInit(): void {}
eraseInput() {
//
this.inputModelChange.emit('');
// TODO focus on other element
}
}

View File

@ -23,6 +23,8 @@ import { LanguageSelectorComponent } from './components/selectors/language-selec
import { ThemeSelectorComponent } from './components/selectors/theme-selector/theme-selector.component';
import { SettingsComponent } from './components/settings/settings.component';
import { SpinnerComponent } from './components/spinner/spinner.component';
import { CopyTextComponent } from './components/ui/copy-text/copy-text.component';
import { ErasableInputComponent } from './components/ui/erasable-input/erasable-input.component';
const COMPONENTS = [
ChoiceDetailsComponent,
@ -33,6 +35,8 @@ const COMPONENTS = [
SettingsComponent,
SpinnerComponent,
ThemeSelectorComponent,
CopyTextComponent,
ErasableInputComponent,
];
const ANGULAR_MODULES = [CommonModule, ChartsModule, FormsModule, TranslateModule];

View File

@ -3,7 +3,11 @@
"Title": "Translation example",
"Intro": "Hello I am {{name}}, I am {{age}} years old.",
"home": {
"title": "home's title"
"title": "Welcome at",
"subtitle": "Simply get together to collectivly organize",
"search_title": "Where are my polls ? ",
"create_button": "Create a new poll",
"search_button": "Search"
},
"PAGE_NOT_FOUND": {
"DEFAULT": "This page doesnt exist.",
@ -24,6 +28,7 @@
"creation": {
"title": "To begin with",
"want": "I want to create a poll",
"advanced": "More options",
"kind": {
"classic": "classic",
"date": "special dates"
@ -133,8 +138,451 @@
"choiceNotColorblind": "I am not",
"colorblindText": "colorblind."
},
"selectors": {
"lang": "Select the lang"
},
"SENTENCES": {
"create-a-poll": "Create a poll",
"define-dates-or-subjects-to-choose-from": "Define dates or subjects to choose from",
"discuss-and-make-a-decision": "Discuss and make a decision",
"do-you-want-to": "Do you want to",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate is an online service for planning an appointment or making a decision quickly and easily. No registration is required.",
"here-is-how-it-works": "Here is how it works:",
"send-the-poll-link-to-your-friends-or-colleagues": "Send the poll link to your friends or colleagues",
"what-is-framadate": "What is Framadate?",
"view-an-example": "view an example?",
"cecill-b-license": "CeCILL-B license",
"framadate-is-licensed-under-the": "Framadate is licensed under the",
"framadate-was-initially-based-on": "Framadate was initially based on",
"the-software": "The software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "This software needs javascript and cookies enabled. It is compatible with the following web browsers:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "software developed by the University of Strasbourg. These days, it is developed by the Framasoft association.",
"grow-your-own": "Grow your own",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "If you want to install the software for your own use and thus increase your independence, we can help you at:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "To participate in the software development, suggest improvements or simply download it, please visit",
"the-development-site": "the development site",
"Actions": "Actions",
"Administration": "Administration",
"Author": "Author",
"back-to-administration": "Back to administration",
"change-the-poll": "Change the poll",
"Email": "Email",
"Executed": "Executed",
"expiry-date": "Expiry date",
"Fail": "Fail",
"failed": "Failed:",
"Format": "Format",
"Installation": "Installation",
"Logs": "Logs",
"Migration": "Migration",
"Nothing": "Nothing",
"pages": "Pages:",
"poll-id": "Poll ID",
"poll-deleted": "Poll deleted",
"Polls": "Polls",
"Purge": "Purge",
"purge-the-polls": "Purge the polls",
"purged": "Purged:",
"see-the-poll": "See the poll",
"skipped": "Skipped:",
"Status": "Status",
"succeeded": "Succeeded:",
"Success": "Success",
"Summary": "Summary",
"Title": "Title",
"Votes": "Votes",
"Waiting": "Waiting",
"polls-in-the-database-at-this-time": "polls in the database at this time",
"check-again": "Check again",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Consider enabling the PHP extension OpenSSL for increased security.",
"consider-setting-the-date-timezone-in-php-ini": "Consider setting the date.timezone in php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Consider setting « session.cookie_httponly = 1 » inside your php.ini or add « php_value session.cookie_httponly 1 » to your .htaccess so that cookies can't be accessed through Javascript.",
"continue-the-installation": "Continue the installation",
"cookies-are-served-from-http-only": "Cookies are served from HTTP only.",
"installation-checking": "Installation checking",
"openssl-extension-loaded": "OpenSSL extension loaded.",
"php-intl-extension-is-enabled": "PHP Intl extension is enabled.",
"php-version-x-is-enough-needed-at-least-php-x": "PHP version %s is enough (needed at least PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "The config file directory (%s) is not writable and the config file (%s) does not exists.",
"the-config-file-directory-x-is-writable": "The config file directory (%s) is writable.",
"the-config-file-exists": "The config file exists.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "The template compile directory (%s) doesn't exist in \"%s\". Retry the installation process.",
"the-template-compile-directory-x-is-not-writable": "The template compile directory (%s) is not writable.",
"the-template-compile-directory-x-is-writable": "The template compile directory (%s) is writable.",
"you-need-to-enable-the-php-intl-extension": "You need to enable the PHP Intl extension.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Your PHP version (%s) is too old. This application needs at least PHP %s.",
"date-timezone-is-set": "date.timezone is set.",
"add-a-comment-to-the-poll": "Add a comment to the poll",
"Comment": "Comment",
"comment-saved": "Comment saved",
"Comments": "Comments",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Enter your name and comment prior to submitting the form",
"remove-comment": "Remove comment",
"submit-comment": "Submit comment",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %B %e, %Y",
"b-y": "%B %Y",
"y-m-x": "%Y-%m-%d",
"a-e": "%a %e",
"m-x-y-h-m": "%m/%d/%Y %H:%M",
"add-range-dates": "Add range dates",
"end-date": "End date",
"start-date": "Start date",
"Y-m-d": "Y-m-d",
"you-can-select-at-most-4-months": "You can select at most 4 months",
"yyyy-mm-dd": "yyyy-mm-dd",
"yyyy-mm-dd-for-humans": "year-month-day",
"edit-link-for-poll-x": "Edit link for poll \"%s\"",
"here-is-the-link-for-editing-your-vote": "Here is the link for editing your vote:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "If you don't want to lose your personalized link, we can send it to you by email.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Please wait %d seconds before we can send an email to you then try again.",
"REMINDER": "REMINDER",
"Send": "Send",
"the-email-address-is-not-correct": "The email address is not correct.",
"your-reminder-has-been-successfully-sent": "Your reminder has been successfully sent!",
"adding-vote-failed": "Adding vote failed",
"cant-create-an-empty-column": "Can't create an empty column.",
"cant-create-the-config-php-file-in-x": "Can't create the config.php file in '%s'.",
"comment-failed": "Comment failed",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Cookies are disabled on your browser. They are required to be able to create a poll.",
"enter-a-name": "Enter a name",
"enter-a-name-and-a-comment": "Enter a name and a comment!",
"enter-a-title": "Enter a title",
"enter-an-email-address": "Enter an email address",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Error on amount of votes limitation: Value must be an integer greater than 0",
"error": "Error!",
"failed-to-delete-all-comments": "Failed to delete all comments",
"failed-to-delete-all-votes": "Failed to delete all votes",
"failed-to-delete-column": "Failed to delete column",
"failed-to-delete-the-comment": "Failed to delete the comment",
"failed-to-delete-the-poll": "Failed to delete the poll",
"failed-to-delete-the-vote": "Failed to delete the vote!",
"failed-to-insert-the-comment": "Failed to insert the comment!",
"failed-to-save-poll": "Failed to save poll",
"forbidden": "Forbidden!",
"GenericErrorPollCreation": "Oh no! Your poll could not be created at the moment. Sorry about that. Please try again later.",
"identifier-is-already-used": "Identifier is already used",
"if-you-quit-now-your-changes-will-be-lost": "If you quit now, your changes will be lost.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript is disabled on your browser. It is required to create a poll.",
"missing-values": "Missing values",
"no-polls-found": "No polls found",
"password-is-empty": "Password is empty.",
"passwords-do-not-match": "Passwords do not match.",
"poll-has-been-updated-before-you-vote": "Poll has been updated before you vote",
"something-has-gone-wrong": "Something has gone wrong...",
"something-is-wrong-with-the-format": "Something is wrong with the format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Something is wrong with the format: Customized URLs should only consist of alphanumeric characters and hyphens.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Something is wrong with the format: name shouldn't have any spaces before or after",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "The address is not correct! You should enter a valid email address (like r.stallman@outlock.com) in order to receive the link to your poll.",
"the-column-already-exists": "The column already exists",
"the-name-is-invalid": "The name is invalid.",
"the-name-youve-chosen-already-exists-in-this-poll": "The name you've chosen already exists in this poll!",
"there-is-a-problem-with-your-choices": "There is a problem with your choices",
"this-identifier-is-not-allowed": "This identifier is not allowed",
"this-poll-doesnt-exist": "This poll doesn't exist!",
"unable-to-connect-to-database": "Unable to connect to database",
"update-vote-failed": "Update vote failed",
"you-already-voted": "You already voted",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "You can't create a poll with hidden results with the following option: ",
"you-cant-select-more-than-x-dates": "You can't select more than %d dates",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "You haven't filled the first section of the poll creation, or your session has expired.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry.",
"Address": "Address",
"created-polls": "Created polls",
"have-a-good-day": "Have a good day!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Here is the list of the polls that you manage on %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "If you weren't the source of this action and if you think this is an abuse of the service, please notify the administrator at %s.",
"its-address": "Its address",
"last-access-date": "Last access date",
"list-of-your-polls": "List of your polls",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: this email has been sent because you or someone else asked to get back the polls created with your email address.",
"polls-saved-inside-this-browser": "Polls saved inside this browser",
"polls-sent": "Polls sent",
"remove-all-my-polls-from-this-browsers-index": "Remove all my polls from this browser's index",
"remove-poll-from-index": "Remove poll from index",
"send-me-my-polls": "Send me my polls",
"send-my-polls-by-email": "Send my polls by email",
"the-date-you-created-or-last-accessed-the-poll": "The date you created or last accessed the poll",
"the-title-of-the-poll": "The title of the poll",
"there-are-no-polls-saved-inside-your-browser-yet": "There are no polls saved inside your browser yet",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "To delete this data click the trashcan on the according line or click the « delete my polls index » option. This won't delete your polls.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "To help you find your previous polls, we save each poll you create or access inside your browser. This data is saved inside this browser only. The following data will be saved:",
"visited-polls": "Visited polls",
"in-the-format-name-mail-com": "(in the format name@mail.com)",
"Add": "Add",
"Back": "Back",
"back-to-the-homepage-of": "Back to the homepage of",
"Cancel": "Cancel",
"Choice": "Choice",
"Classic": "Classic",
"Close": "Close",
"create-your-own-polls": "Create your own polls",
"creation-date": "Creation date:",
"Date": "Date",
"Day": "Day",
"Description": "Description",
"Edit": "Edit",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate is an online service for planning an appointment or making a decision quickly and easily.",
"Home": "Home",
"Information": "Information",
"legend": "Legend:",
"Link": "Link",
"Markdown": "Markdown",
"Next": "Next",
"No": "No",
"page-generated-in": "Page generated in",
"Poll": "Poll",
"Remove": "Remove",
"Save": "Save",
"Search": "Search",
"Time": "Time",
"under-reserve": "Under reserve",
"Unknown": "Unknown",
"Validate": "Validate",
"Yes": "Yes",
"your-email-address": "Your email address",
"your-name": "Your name",
"days": "days",
"for": "for",
"months": "months",
"seconds": "seconds",
"vote": "vote",
"votes": "votes",
"with": "with",
"make-a-standard-poll": "Make a standard poll",
"schedule-an-event": "Schedule an event",
"where-are-my-polls": "Where are my polls?",
"administrator-mail-address": "Administrator mail address",
"application-name": "Application name",
"clean-url": "Clean URL",
"database-driver": "Database driver",
"database-hostname": "Database hostname",
"database-name": "Database name",
"database-port": "Database port",
"default-language": "Default language",
"General": "General",
"Install": "Install",
"migration-table": "Migration table",
"Password": "Password",
"Prefix": "Prefix",
"respond-to-mail-address": "Respond-to mail address",
"User": "User",
"change-language": "Change language",
"select-language": "Select language",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"The road is long, but the way is clear…\"<br/>Framasoft lives only by your donations.<br/>Thank you in advance for your support https://soutenir.framasoft.org",
"message-for-the-author": "Message for the author",
"notification-of-poll-x": "Notification of poll: %s",
"participant-link": "Participant link",
"poll-participation-x": "Poll participation: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Someone just changed your poll at the following link <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Someone just deleted your poll \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Thank you for participating in the poll at the following link",
"thank-you-for-your-trust": "Thank you for your trust.",
"this-is-the-message-to-forward-to-the-poll-participants": "This is the message to forward to the poll participants.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "This message should NOT be sent to the poll participants. You should keep it private. <br/><br/>You can modify your poll at the following link",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "added a vote.<br/>You can visit your poll at the link",
"has-just-created-a-poll-called": "has just created a poll called",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "updated a vote.<br/>You can visit your poll at the link",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "wrote a comment.<br/>You can visit your poll at the link",
"thank-you-for-your-understanding": "Thank you for your understanding.",
"the-application": "The application",
"is-currently-under-maintenance": "is currently under maintenance.",
"submit-access": "Submit access",
"wrong-password": "Wrong password",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "You have to provide a password so you can participate to the poll.",
"you-have-to-provide-a-password-to-access-the-poll": "You have to provide a password to access the poll.",
"x-option": "%s option",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Anyone will be able to see your email address after you voted",
"best-choice": "Best choice",
"best-choices": "Best choices",
"Chart": "Chart",
"display-the-chart-of-the-results": "Display the chart of the results",
"edit-line-x": "Edit line: %s",
"link-to-edit-this-particular-line": "Link to edit this particular line",
"remove-line": "Remove line:",
"save-choices": "Save choices",
"scroll-to-the-left": "Scroll to the left",
"scroll-to-the-right": "Scroll to the right",
"the-current-best-choice-is": "The current best choice is:",
"the-current-best-choices-are": "The current best choices are:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "The link to edit this particular line has been copied to the clipboard!",
"Total": "Total",
"vote-no-for": "Vote \"no\" for",
"vote-yes-for": "Vote \"yes\" for",
"votes-under-reserve-for": "Votes under reserve for",
"polled-user": "polled user",
"polled-users": "polled users",
"admin-link-for-the-poll": "Admin link for the poll",
"cancel-the-description-edit": "Cancel the description edit",
"cancel-the-email-address-edit": "Cancel the email address edit",
"cancel-the-expiration-date-edit": "Cancel the expiration date edit",
"cancel-the-name-edit": "Cancel the name edit",
"cancel-the-rules-edit": "Cancel the rules edit",
"cancel-the-title-edit": "Cancel the title edit",
"creator-of-the-poll": "Creator of the poll",
"edit-name": "Edit name",
"edit-the-description": "Edit the description",
"edit-the-email-address": "Edit the email address",
"edit-the-expiry-date": "Edit the expiry date",
"edit-the-poll-rules": "Edit the poll rules",
"edit-title": "Edit title",
"export-to-csv": "Export to CSV",
"no-password": "No password",
"only-votes-are-protected": "Only votes are protected",
"password-protected": "Password protected",
"poll-rules": "Poll rules",
"Print": "Print",
"public-link-to-the-poll": "Public link to the poll",
"remove-all-comments": "Remove all comments",
"remove-all-votes": "Remove all votes",
"remove-password": "Remove password",
"remove-the-poll": "Remove the poll",
"results-are-hidden": "Results are hidden",
"results-are-visible": "Results are visible",
"rich-editor": "Rich editor",
"save-the-description": "Save the description",
"save-the-email-address": "Save the email address",
"save-the-new-expiration-date": "Save the new expiration date",
"save-the-new-name": "Save the new name",
"save-the-new-rules": "Save the new rules",
"save-the-new-title": "Save the new title",
"simple-editor": "Simple editor",
"title-of-the-poll": "Title of the poll",
"voters-email-addresses-are-collected": "Voters' email addresses are collected",
"voters-email-addresses-are-collected-and-required": "Voters' email addresses are collected and required",
"voters-email-addresses-are-collected-required-and-verified": "Voters' email addresses are collected, required and verified",
"voters-email-addresses-are-not-collected": "Voters' email addresses are not collected",
"votes-and-comments-are-locked": "Votes and comments are locked",
"votes-protected-by-password": "Votes protected by password",
"all-voters-can-modify-any-vote": "All voters can modify any vote",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "By defining an identifier that can facilitate access to the poll for unwanted people. It is recommended to protect it with a password.",
"collect-voters-email-addresses": "Collect voters' email addresses",
"Confirmation": "Confirmation",
"customize-the-url": "Customize the URL",
"email-addresses-are-collected-but-not-required": "Email addresses are collected but not required",
"email-addresses-are-not-collected": "Email addresses are not collected",
"email-addresses-are-required": "Email addresses are required",
"email-addresses-are-required-and-verified": "Email addresses are required and verified",
"go-to-step-2": "Go to step 2",
"limit-the-amount-of-voters-per-option": "Limit the amount of voters per option",
"more-informations-here": "More informations here:",
"only-the-poll-maker-can-see-the-poll-results": "Only the poll maker can see the poll results",
"optional-parameters": "Optional parameters",
"Permissions": "Permissions",
"poll-creation-1-of-3": "Poll creation (1 of 3)",
"poll-link": "Poll link",
"poll-title": "Poll title",
"receive-an-email-for-each-new-comment": "Receive an email for each new comment",
"receive-an-email-for-each-new-vote": "Receive an email for each new vote",
"required-fields-cannot-be-left-blank": "Required fields cannot be left blank.",
"the-identifier-can-contain-letters-numbers-and-dashes": "The identifier can contain letters, numbers and dashes \"-\".",
"the-results-are-publicly-visible": "The results are publicly visible",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "To make the description more attractive, you can use the Markdown format.",
"use-a-password-to-restrict-access": "Use a password to restrict access",
"value-max": "Value Max",
"voters-can-modify-their-own-vote-themselves": "Voters can modify their own vote themselves",
"votes-cannot-be-modified": "Votes cannot be modified",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Warning: Anyone can see the polled users' email addresses since all voters can modify any vote. You should restrict permission rules.",
"you-are-in-the-poll-creation-section": "You are in the poll creation section.",
"you-can-enable-or-disable-the-editor-at-will": "You can enable or disable the editor at will.",
"votes-per-option": "votes per option",
"go-to-step-3": "Go to step 3",
"return-to-step-1": "Return to step 1",
"add-a-choice": "Add a choice",
"add-a-link-or-an-image": "Add a link or an image",
"alternative-text": "Alternative text",
"links-or-images-can-be-included-using": "Links or images can be included using",
"markdown-syntax": "Markdown syntax",
"poll-options-2-of-3": "Poll options (2 of 3)",
"remove-a-choice": "Remove a choice",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "These fields are optional. You can add a link, an image or both.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "To create a poll you should provide at least two different choices.",
"url-of-the-image": "URL of the image",
"you-can-add-or-remove-choices-with-the-buttons": "You can add or remove choices with the buttons",
"add-a-day": "Add a day",
"add-a-time-slot": "Add a time slot",
"choose-dates-for-your-poll": "Choose dates for your poll",
"copy-times-from-the-first-day": "Copy times from the first day",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "For each selected day, you are free to suggest meeting times (e.g., \"8h\", \"8:30\", \"8h-10h\", \"evening\", etc.)",
"poll-dates-2-of-3": "Poll dates (2 of 3)",
"remove-a-day": "Remove a day",
"remove-a-time-slot": "Remove a time slot",
"remove-all-days": "Remove all days",
"remove-all-times": "Remove all times",
"remove-this-day": "Remove this day",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "To schedule an event you need to provide at least two choices (e.g., two time slots on one day or two days).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "You can add or remove additional days and times with the buttons",
"back-to-step-2": "Back to step 2",
"confirm-the-creation-of-your-poll": "Confirm the creation of your poll",
"create-the-poll": "Create the poll",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Expiry date:",
"list-of-options": "List of options",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Once you have confirmed the creation of your poll, you will automatically be redirected to the poll's administration page.",
"removal-date-and-confirmation-3-of-3": "Removal date and confirmation (3 of 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Then you will receive two emails: one containing the link of your poll for sending to the participants, the other containing the link to the poll administration page.",
"you-can-set-a-specific-expiry-date-for-the-poll": "You can set a specific expiry date for the poll.",
"your-poll-will-automatically-be-archived": "Your poll will automatically be archived",
"your-poll-will-be-automatically-archived-in-x-days": "Your poll will be automatically archived in %d days.",
"after-the-last-date-of-your-poll": "after the last date of your poll.",
"version-x": "Version %s",
"add-a-column": "Add a column",
"adding-a-column": "Adding a column",
"all-comments-deleted": "All comments deleted",
"all-votes-deleted": "All votes deleted",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "As poll administrator, you can change all the lines of this poll with this button",
"back-to-the-poll": "Back to the poll",
"choice-added": "Choice added",
"collect-the-emails-of-the-polled-users-for-the-choice": "Collect the emails of the polled users for the choice",
"column-deleted": "Column deleted",
"comment-deleted": "Comment deleted",
"confirm-removal-of-all-comments": "Confirm removal of all comments",
"confirm-removal-of-all-votes": "Confirm removal of all votes",
"confirm-removal-of-the-column": "Confirm removal of the column.",
"confirm-removal-of-your-poll": "Confirm removal of your poll",
"delete-poll": "Delete poll",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Finally, you can change the properties of this poll such as the title, the comments or your email address.",
"keep-comments": "Keep comments",
"keep-the-comments": "Keep the comments",
"keep-the-poll": "Keep the poll",
"keep-the-votes": "Keep the votes",
"keep-this-poll": "Keep this poll",
"keep-votes": "Keep votes",
"poll-fully-deleted": "Poll fully deleted",
"poll-saved": "Poll saved",
"remove-column": "Remove column",
"remove-the-comments": "Remove the comments",
"remove-the-votes": "Remove the votes",
"the-poll-was-created": "The poll was created.",
"vote-added": "Vote added",
"vote-deleted": "Vote deleted",
"vote-updated": "Vote updated",
"you-can-add-a-new-scheduling-date-to-your-poll": "You can add a new scheduling date to your poll.",
"your-poll-has-been-removed": "Your poll has been removed!",
"and-add-a-new-column-with": "and add a new column with",
"remove-a-column-or-a-line-with": "remove a column or a line with",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Users who voted \"If need be\" for this option have left those email addresses:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Users who voted \"No\" for this option have left those email addresses:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Users who voted \"Yes\" for this option have left those email addresses:",
"deletion-date": "Deletion date:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "If you want to vote in this poll, you have to give your name, make your choice, and submit it by selecting the save button at the end of the line.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "The administrator locked this poll. Votes and comments are frozen, it is no longer possible to participate",
"the-poll-has-expired-it-will-soon-be-deleted": "The poll has expired, it will soon be deleted.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Your vote has been saved, but please note: you need to keep this personalised link to be able to edit your vote."
}
,
"LANGUAGES": {
"FR": "Français",
"EN": "English"
"DE": "Allemand",
"FR": "French",
"BR": "Breton",
"CA": "Canadien",
"EL": "el",
"ES": "Espagnol",
"EN": "English",
"GL": "gl",
"HU": "hu",
"IT": "Italien",
"NL": "Néérlandais",
"OC": "oc",
"SV": "sv"
}
}

View File

@ -3,7 +3,11 @@
"Title": "Exemple de traduction",
"Intro": "Bonjour je m'appelle {{name}}, j'ai {{age}} ans.",
"home": {
"title": "le titre de la home"
"title": "Bienvenue sur",
"subtitle": "Se consulter simplement pour sorganiser collectivement.",
"search_title": "Où sont mes sondages? ",
"create_button": "Créer un nouveau sondage ",
"search_button": "Rechercher"
},
"PAGE_NOT_FOUND": {
"DEFAULT": "Cette page nexiste pas.",
@ -24,12 +28,14 @@
"creation": {
"title": "Créer un sondage",
"want": "Je veux créer un sondage",
"advanced": "Options avancées",
"kind": {
"classic": "classique",
"date": "spécial dates"
},
"choose_title": "Dont le titre sera",
"choose_title_placeholder": "titre",
"choices_hint": "Utilisez les flèches haut ⬆️ et bas ⬇️ pour passer d'un choix à un autre",
"name": "Je peux aussi préciser mon nom si je le souhaite",
"name_placeholder": "mon nom",
"description": "et la description serait",
@ -133,8 +139,451 @@
"choiceNotColorblind": "Je ne suis pas",
"colorblindText": "daltonien."
},
"selectors": {
"lang": "Sélectionner la langue"
},
"SENTENCES": {
"create-a-poll": "Créez un sondage",
"define-dates-or-subjects-to-choose-from": "Déterminez les dates ou les sujets à choisir",
"discuss-and-make-a-decision": "Discutez et prenez votre décision",
"do-you-want-to": "Voulez-vous",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate est un service en ligne permettant de planifier un rendez-vous ou prendre des décisions rapidement et simplement. Aucune inscription préalable nest nécessaire.",
"here-is-how-it-works": "Voici comment ça fonctionne :",
"send-the-poll-link-to-your-friends-or-colleagues": "Envoyez le lien du sondage à vos ami·e·s ou collègues",
"what-is-framadate": "Prise en main",
"view-an-example": "voir un exemple ?",
"cecill-b-license": "licence CeCILL-B",
"framadate-is-licensed-under-the": "Il est régi par la",
"framadate-was-initially-based-on": "Framadate est initialement basé sur",
"the-software": "Le logiciel",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Ce logiciel requiert lactivation du JavaScript et des cookies. Il est compatible avec les navigateurs web suivants :",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un logiciel développé par l'Université de Strasbourg. Aujourd'hui, son développement est assuré par lassociation Framasoft.",
"grow-your-own": "Cultivez votre jardin",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Si vous souhaitez installer ce logiciel pour votre propre usage et ainsi gagner en autonomie, nous vous aidons sur :",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Pour participer au développement du logiciel, proposer des améliorations ou simplement le télécharger, rendez-vous sur",
"the-development-site": "le site de développement",
"Actions": "Actions",
"Administration": "Administration",
"Author": "Auteur·rice",
"back-to-administration": "Retour à l'administration",
"change-the-poll": "Modifier le sondage",
"Email": "Courriel",
"Executed": "Exécutées",
"expiry-date": "Date dexpiration",
"Fail": "Échec",
"failed": "Échec :",
"Format": "Format",
"Installation": "Installation",
"Logs": "Historique",
"Migration": "Migration",
"Nothing": "Rien",
"pages": "Pages :",
"poll-id": "ID sondage",
"poll-deleted": "Sondage complètement supprimé",
"Polls": "Sondages",
"Purge": "Purger",
"purge-the-polls": "Purger les sondages",
"purged": "Purgés :",
"see-the-poll": "Voir le sondage",
"skipped": "Passé :",
"Status": "Statut",
"succeeded": "Succès :",
"Success": "Réussite",
"Summary": "Résumé",
"Title": "Titre",
"Votes": "Votes",
"Waiting": "En attente",
"polls-in-the-database-at-this-time": "sondages dans la base actuellement",
"check-again": "Vérifier à nouveau",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Veuillez considérer l'activation de l'extension PHP OpenSSL pour améliorer la sécurité.",
"consider-setting-the-date-timezone-in-php-ini": "Veuillez considérer la définition de date.timezone dans le php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Pensez à définir « session.cookie_httponly = 1 » dans votre fichier php.ini ou bien ajouter « php_value session.cookie_httponly 1 » à votre fichier .htaccess de telle sorte que les cookies ne puissent pas être accessibles depuis Javascript.",
"continue-the-installation": "Continuer l'installation",
"cookies-are-served-from-http-only": "Les cookies sont accessibles uniquement via HTTP.",
"installation-checking": "Vérifications de l'installation",
"openssl-extension-loaded": "L'extension PHP OpenSSL est chargée.",
"php-intl-extension-is-enabled": "L'extension PHP Intl est activée.",
"php-version-x-is-enough-needed-at-least-php-x": "Version de PHP %s suffisante (nécessite au moins PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Le dossier du fichier de configuration (%s) n'est pas accessible en écriture et le fichier de configuration (%s) n'existe pas.",
"the-config-file-directory-x-is-writable": "Le dossier du fichier de configuration (%s) est accessible en écriture.",
"the-config-file-exists": "Le fichier de configuration existe.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Le dossier de compilation des templates (%s) n'existe pas dans \"%s\". Essayez de relancer l'installation.",
"the-template-compile-directory-x-is-not-writable": "Le dossier de compilation des templates (%s) n'est pas accessible en écriture.",
"the-template-compile-directory-x-is-writable": "Le dossier de compilation des templates (%s) est accessible en écriture.",
"you-need-to-enable-the-php-intl-extension": "Vous devez activer l'extension PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Votre version de PHP (%s) est trop vieille. Cette application a besoin de PHP %s au moins.",
"date-timezone-is-set": "date.timezone est défini.",
"add-a-comment-to-the-poll": "Ajouter un commentaire au sondage",
"Comment": "Votre commentaire",
"comment-saved": "Commentaire ajouté",
"Comments": "Commentaires de sondé·e·s",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Entrez votre nom et commentaire avant de soumettre le formulaire",
"remove-comment": "Supprimer le commentaire",
"submit-comment": "Envoyer le commentaire",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d-%m-%Y %H:%M",
"add-range-dates": "Ajout d'un intervalle de dates",
"end-date": "Date de fin",
"start-date": "Date de début",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Vous pouvez sélectionner au maximum 4 mois",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "jour/mois/année",
"edit-link-for-poll-x": "Lien d'édition du sondage \"%s\"",
"here-is-the-link-for-editing-your-vote": "Voici le lien pour éditer votre vote :",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Afin de ne pas perdre ce lien d'édition de vote, nous pouvons vous l'envoyer par courriel.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Veuillez patienter encore %d secondes avant que nous puissions vous envoyer un email, puis réessayez.",
"REMINDER": "RAPPEL",
"Send": "Envoyer",
"the-email-address-is-not-correct": "Courriel incorrect.",
"your-reminder-has-been-successfully-sent": "Votre rappel a été envoyé avec succès !",
"adding-vote-failed": "Échec de l'ajout d'un vote",
"cant-create-an-empty-column": "Impossible de créer une colonne vide.",
"cant-create-the-config-php-file-in-x": "Impossible de créer le fichier config.php dans '%s'.",
"comment-failed": "Échec du commentaire",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Les cookies sont désactivés sur votre navigateur. Leur activation est requise pour la création d'un sondage.",
"enter-a-name": "Vous n'avez pas saisi de nom !",
"enter-a-name-and-a-comment": "Merci de remplir les deux champs !",
"enter-a-title": "Il faut saisir un titre !",
"enter-an-email-address": "Il faut saisir une adresse électronique !",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Erreur : le nombre de votants doit être un nombre supérieur à 0",
"error": "Erreur !",
"failed-to-delete-all-comments": "Impossible de supprimer tous les commentaires",
"failed-to-delete-all-votes": "Impossible de supprimer tous les votes",
"failed-to-delete-column": "Échec de la suppression de colonne",
"failed-to-delete-the-comment": "Impossible de supprimer le commentaire",
"failed-to-delete-the-poll": "Impossible de supprimer le sondage",
"failed-to-delete-the-vote": "Échec de la suppression du vote !",
"failed-to-insert-the-comment": "Échec à l'insertion du commentaire !",
"failed-to-save-poll": "Échec de la sauvegarde du sondage",
"forbidden": "Interdit !",
"GenericErrorPollCreation": "Oh non ! Votre sondage n'a pas pu être enregistré. Nous sommes désolés. Merci de réessayer.",
"identifier-is-already-used": "L'identifiant est déjà utilisé",
"if-you-quit-now-your-changes-will-be-lost": "Si vous quittez maintenant, vos modifications seront perdues.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript est désactivé sur votre navigateur. Son activation est requise pour la création d'un sondage.",
"missing-values": "Il manque des valeurs",
"no-polls-found": "Aucun sondage n'a été trouvé",
"password-is-empty": "Le mot de passe est vide.",
"passwords-do-not-match": "Les mots de passe ne correspondent pas.",
"poll-has-been-updated-before-you-vote": "Le sondage a été mis à jour avant votre vote",
"something-has-gone-wrong": "Quelque chose ne va pas...",
"something-is-wrong-with-the-format": "Quelque chose ne va pas avec le format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Format incorrect : seuls les caractères alphabétiques, nombres et tirets sont acceptés dans les URLs personnalisées.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Quelque chose ne va pas avec le format : le nom ne devrait pas contenir d'espaces avant ou après",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "L'adresse saisie n'est pas correcte ! Il faut une adresse électronique valide (par exemple r.stallman@outlock.com) pour recevoir le lien vers le sondage.",
"the-column-already-exists": "La colonne existe déjà",
"the-name-is-invalid": "Le nom n'est pas valide.",
"the-name-youve-chosen-already-exists-in-this-poll": "Le nom que vous avez choisi existe déjà !",
"there-is-a-problem-with-your-choices": "Il y a un problème avec vos choix",
"this-identifier-is-not-allowed": "Cet id n'est pas autorisé",
"this-poll-doesnt-exist": "Ce sondage n'existe pas !",
"unable-to-connect-to-database": "Impossible de se connecter à la base de données",
"update-vote-failed": "Échec de la mise à jour du vote",
"you-already-voted": "Vous avez déjà voté",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Vous ne pouvez pas créer de sondage avec résulats cachés avec les options d'édition suivantes : ",
"you-cant-select-more-than-x-dates": "Vous ne pouvez pas choisir plus de %d dates",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Vous n'avez pas renseigné la première page du sondage, ou bien votre session a expiré.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Votre vote n'a pas été pris en compte, car quelqu'un a voté entre temps et cela entre en conflit avec vos choix et les conditions du sondage. Merci de réessayer.",
"Address": "Adresse",
"created-polls": "Sondages créés",
"have-a-good-day": "Bonne journée !",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Voici la liste des sondages que vous administrez sur %s :",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Si jamais vous n'étiez pas à l'origine de cette action et que vous pensez qu'il s'agit d'un abus, vous pouvez nous le signaler à l'administrateur·rice sur %s.",
"its-address": "Son adresse",
"last-access-date": "Date de dernier accès",
"list-of-your-polls": "Liste de vos sondages",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS : ce mail a été envoyé parce que vous ou quelqu'un d'autre avez demandé la récupération des sondages créés à l'aide de votre adresse email.",
"polls-saved-inside-this-browser": "Sondages stockés dans ce navigateur",
"polls-sent": "Sondages envoyés",
"remove-all-my-polls-from-this-browsers-index": "Supprimer tous mes sondages de l'index de ce navigateur",
"remove-poll-from-index": "Supprimer le sondage de l'index",
"send-me-my-polls": "Envoyer mes sondages",
"send-my-polls-by-email": "Envoyer mes sondages par courriel",
"the-date-you-created-or-last-accessed-the-poll": "La date à laquelle vous avez créé ou accédé en dernier le sondage",
"the-title-of-the-poll": "Le titre du sondage",
"there-are-no-polls-saved-inside-your-browser-yet": "Il n'y a pas encore de sondages sauvegardés dans votre navigateur",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Pour supprimer ces données, cliquez sur l'icône en forme de poubelle en face de chaque ligne ou cliquez sur le bouton « Supprimer l'index de mes sondages ». Cela ne supprimera pas vos sondages.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Pour vous aider à trouver vos sondages précédents, nous enregistrons des informations sur chaque sondage que vous effectuez ou auquel vous accédez dans votre navigateur. Ces données sont sauvegardées uniquement dans votre navigateur. Les données suivantes seront enregistrées :",
"visited-polls": "Sondages accédés",
"in-the-format-name-mail-com": "(au format nom@mail.com)",
"Add": "Ajouter",
"Back": "Précédent",
"back-to-the-homepage-of": "Retourner à la page d'accueil de",
"Cancel": "Annuler",
"Choice": "Choix",
"Classic": "Classique",
"Close": "Fermer",
"create-your-own-polls": "Créez vos propres sondages",
"creation-date": "Date de création :",
"Date": "Date",
"Day": "Jour",
"Description": "Description",
"Edit": "Modifier",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate est un service en ligne permettant de planifier un rendez-vous ou prendre des décisions rapidement et simplement.",
"Home": "Accueil",
"Information": "Légende",
"legend": "Légende :",
"Link": "Lien",
"Markdown": "Markdown",
"Next": "Continuer",
"No": "Non",
"page-generated-in": "Page générée en",
"Poll": "Sondage",
"Remove": "Effacer",
"Save": "Enregistrer",
"Search": "Chercher",
"Time": "Horaire",
"under-reserve": "Si nécessaire",
"Unknown": "Inconnu",
"Validate": "Valider",
"Yes": "Oui",
"your-email-address": "Votre courriel",
"your-name": "Votre nom",
"days": "jours",
"for": "à",
"months": "mois",
"seconds": "secondes",
"vote": "vote",
"votes": "votes",
"with": "avec",
"make-a-standard-poll": "Créer un sondage classique",
"schedule-an-event": "Créer un sondage spécial dates",
"where-are-my-polls": "Où sont mes sondages ?",
"administrator-mail-address": "Adresse mail de l'application",
"application-name": "Nom de l'application",
"clean-url": "URL propres",
"database-driver": "Pilote de la base de données",
"database-hostname": "Nom d'hôte",
"database-name": "Nom de la base de données",
"database-port": "Port de la base de données",
"default-language": "Langue par défaut",
"General": "Général",
"Install": "Installer",
"migration-table": "Table de migration",
"Password": "Mot de passe",
"Prefix": "Préfixe",
"respond-to-mail-address": "Mail de réponse",
"User": "Utilisateur·rice",
"change-language": "Changer la langue",
"select-language": "Choisir la langue",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo":  La route est longue, mais la voie est libre… »<br/>Framasoft ne vit que par vos dons (déductibles des impôts).<br/>Merci d'avance pour votre soutien https://soutenir.framasoft.org.",
"message-for-the-author": "Réservé à l'auteur·rice",
"notification-of-poll-x": "Notification d'un sondage : %s",
"participant-link": "Pour diffusion aux sondé·e·s",
"poll-participation-x": "Participation au sondage : %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Quelqu'un·e vient de modifier votre sondage accessible au lien suivant <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Quelqu'un·e vient de supprimer votre sondage \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Merci de bien vouloir participer au sondage à l'adresse suivante",
"thank-you-for-your-trust": "Merci de votre confiance.",
"this-is-the-message-to-forward-to-the-poll-participants": "Ceci est le message qui doit être envoyé aux sondé·e·s.<br/>Vous pouvez maintenant transmettre ce message à toutes les personnes susceptibles de participer au vote.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Ce message ne doit PAS être diffusé aux sondé·e·s. Il est réservé à l'auteur·rice du sondage.<br/><br/>Vous pouvez modifier ce sondage à l'adresse suivante",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "vient de voter.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"has-just-created-a-poll-called": "vient de créer un sondage intitulé",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "vient de mettre à jour un vote.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "vient de rédiger un commentaire.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"thank-you-for-your-understanding": "Merci de votre compréhension.",
"the-application": "L'application",
"is-currently-under-maintenance": "est en cours de maintenance.",
"submit-access": "Accéder",
"wrong-password": "Mot de passe incorrect.",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Vous devez donner le mot de passe pour pouvoir participer à ce sondage.",
"you-have-to-provide-a-password-to-access-the-poll": "Vous devez donner le mot de passe pour avoir accès à ce sondage.",
"x-option": "%s option",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Tout le monde pourra accéder à votre courriel après que vous ayez voté",
"best-choice": "Meilleur choix",
"best-choices": "Meilleurs choix",
"Chart": "Graphique",
"display-the-chart-of-the-results": "Afficher le graphique des résultats",
"edit-line-x": "Modifier la ligne : %s",
"link-to-edit-this-particular-line": "Lien pour éditer cette ligne",
"remove-line": "Supprimer la ligne :",
"save-choices": "Enregistrer les choix",
"scroll-to-the-left": "Faire défiler à gauche",
"scroll-to-the-right": "Faire défiler à droite",
"the-current-best-choice-is": "Pour l'instant, le choix ayant reçu le plus grand nombre de votes est :",
"the-current-best-choices-are": "Pour l'instant, les choix ayant reçu le plus grand nombre de votes sont :",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Le lien pour l'édition de cette ligne a été copié dans le presse-papier !",
"Total": "Somme",
"vote-no-for": "Voter « non » pour",
"vote-yes-for": "Voter « oui » pour",
"votes-under-reserve-for": "Si nécessaire",
"polled-user": "votant·e",
"polled-users": "votant·e·s",
"admin-link-for-the-poll": "Lien d'administration du sondage",
"cancel-the-description-edit": "Annuler le changement de description",
"cancel-the-email-address-edit": "Annuler le changement de courriel",
"cancel-the-expiration-date-edit": "Annuler le changement de date d'expiration",
"cancel-the-name-edit": "Annuler le changement d'auteur·rice",
"cancel-the-rules-edit": "Annuler le changement de permissions",
"cancel-the-title-edit": "Annuler le changement de titre",
"creator-of-the-poll": "Auteur·rice du sondage",
"edit-name": "Modification de l'auteur·rice",
"edit-the-description": "Modifier la description",
"edit-the-email-address": "Modifier le courriel",
"edit-the-expiry-date": "Modifier la date d'expiration",
"edit-the-poll-rules": "Modifier les permissions du sondage",
"edit-title": "Modifier le titre",
"export-to-csv": "Export Tableur (CSV)",
"no-password": "Pas de mot de passe",
"only-votes-are-protected": "Seul les votes sont protégés",
"password-protected": "Protégé par mot de passe",
"poll-rules": "Permissions du sondage",
"Print": "Imprimer",
"public-link-to-the-poll": "Lien public du sondage",
"remove-all-comments": "Supprimer tous les commentaires",
"remove-all-votes": "Supprimer tous les votes",
"remove-password": "Supprimer le mot de passe",
"remove-the-poll": "Supprimer le sondage",
"results-are-hidden": "Les résultats sont cachés",
"results-are-visible": "Les résultats sont visibles",
"rich-editor": "Editeur avancé",
"save-the-description": "Enregistrer la description",
"save-the-email-address": "Enregistrer le courriel",
"save-the-new-expiration-date": "Enregistrer la date d'expiration",
"save-the-new-name": "Enregistrer l'auteur·rice",
"save-the-new-rules": "Enregistrer les nouvelles permissions",
"save-the-new-title": "Enregistrer le nouveau titre",
"simple-editor": "Editeur simple",
"title-of-the-poll": "Titre du sondage",
"voters-email-addresses-are-collected": "Les courriels des votants sont collectés",
"voters-email-addresses-are-collected-and-required": "Les courriels des votants sont collectés et requis",
"voters-email-addresses-are-collected-required-and-verified": "Les courriels des votants sont collectés, requis et vérifiés",
"voters-email-addresses-are-not-collected": "Les courriels des votants ne sont pas collectés",
"votes-and-comments-are-locked": "Il n'est plus possible de voter",
"votes-protected-by-password": "Votes protégés par mot de passe",
"all-voters-can-modify-any-vote": "Tou·te·s les sondé·e·s peuvent modifier tous les votes",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "La modification du lien du sondage peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"collect-voters-email-addresses": "Collecter les courriels des votants",
"Confirmation": "Confirmation",
"customize-the-url": "Personnaliser le lien",
"email-addresses-are-collected-but-not-required": "Les courriels sont collectés mais pas requis",
"email-addresses-are-not-collected": "Les courriels ne sont pas collectés",
"email-addresses-are-required": "Les courriels sont requis",
"email-addresses-are-required-and-verified": "Les courriels sont requis et vérifiés",
"go-to-step-2": "Aller à l'étape 2",
"limit-the-amount-of-voters-per-option": "Limiter le nombre de votant·e·s par option",
"more-informations-here": "Plus d'informations ici :",
"only-the-poll-maker-can-see-the-poll-results": "Seul·e le ou la créateur·rice du sondage peut voir les résultats",
"optional-parameters": "Paramètres facultatifs",
"Permissions": "Permissions",
"poll-creation-1-of-3": "Création de sondage (1 sur 3)",
"poll-link": "Lien du sondage",
"poll-title": "Titre du sondage",
"receive-an-email-for-each-new-comment": "Recevoir un courriel à chaque commentaire",
"receive-an-email-for-each-new-vote": "Recevoir un courriel à chaque participation",
"required-fields-cannot-be-left-blank": "Merci de remplir les champs obligatoires, marqués d'une *.",
"the-identifier-can-contain-letters-numbers-and-dashes": "(peut contenir des lettres, des chiffres et des tirets \"-\")",
"the-results-are-publicly-visible": "Les résultats sont visibles sans mot de passe",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Afin de rendre le descriptif de ce sondage plus attractif, vous pouvez utiliser le formatage Markdown.",
"use-a-password-to-restrict-access": "Restreindre l'accès au sondage par mot de passe",
"value-max": "Valeur Maximale",
"voters-can-modify-their-own-vote-themselves": "Chaque sondé·e peut modifier son propre vote",
"votes-cannot-be-modified": "Aucun vote ne peut être modifié",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Attention : tout le monde pourra accéder aux courriels des votants car tout le monde peut éditer chaque vote. Vous devriez restreindre les règles de permission.",
"you-are-in-the-poll-creation-section": "Vous avez choisi de créer un nouveau sondage.",
"you-can-enable-or-disable-the-editor-at-will": "Vous pouvez activer ou désactiver l'éditeur à votre guise.",
"votes-per-option": "votes par choix",
"go-to-step-3": "Aller à létape 3",
"return-to-step-1": "Revenir à létape 1",
"add-a-choice": "Ajouter un choix",
"add-a-link-or-an-image": "Ajouter un lien ou une image",
"alternative-text": "Texte alternatif",
"links-or-images-can-be-included-using": "Il est possible dinsérer des liens ou des images en utilisant",
"markdown-syntax": "la syntaxe Markdown",
"poll-options-2-of-3": "Choix des sujets (2 sur 3)",
"remove-a-choice": "Supprimer le dernier choix",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Ces champs sont facultatifs. Vous pouvez ajouter un lien, une image ou les deux.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Pour créer un sondage classique, vous devez proposer au moins deux choix différents.",
"url-of-the-image": "URL de l'image",
"you-can-add-or-remove-choices-with-the-buttons": "Vous pouvez ajouter ou supprimer des choix supplémentaires avec les boutons",
"add-a-day": "Ajouter un jour",
"add-a-time-slot": "Ajouter un horaire",
"choose-dates-for-your-poll": "Choisissez les dates de votre sondage",
"copy-times-from-the-first-day": "Reporter les horaires du premier jour sur les autres jours",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Pour chacun des jours sélectionnés, vous avez la possibilité de choisir ou non, des heures de réunion (par exemple : \"8h\", \"8:30\", \"8h-10h\", \"soir\", etc.)",
"poll-dates-2-of-3": "Choix des dates (2 sur 3)",
"remove-a-day": "Supprimer le dernier jour",
"remove-a-time-slot": "Supprimer le dernier horaire",
"remove-all-days": "Effacer tous les jours",
"remove-all-times": "Effacer tous les horaires",
"remove-this-day": "Supprimer ce jour",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Pour créer un sondage spécial dates vous devez proposer au moins deux choix (deux horaires pour une même journée ou deux jours).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Vous pouvez ajouter ou supprimer des jours et horaires supplémentaires avec les boutons",
"back-to-step-2": "Revenir à létape 2",
"confirm-the-creation-of-your-poll": "Confirmez la création de votre sondage",
"create-the-poll": "Créer le sondage",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Date d'archivage :",
"list-of-options": "Liste de vos choix",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Une fois que vous aurez confirmé la création du sondage, vous serez redirigé·e automatiquement vers la page d'administration de votre sondage.",
"removal-date-and-confirmation-3-of-3": "Date d'expiration et confirmation (3 sur 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "En même temps, vous recevrez deux courriels : l'un contenant le lien vers votre sondage pour le faire suivre aux futur·e·s sondé·e·s, l'autre contenant le lien vers la page d'administration du sondage.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Vous pouvez décider d'une date d'archivage plus proche.",
"your-poll-will-automatically-be-archived": "Votre sondage sera automatiquement archivé",
"your-poll-will-be-automatically-archived-in-x-days": "Votre sondage sera automatiquement archivé dans %d jours.",
"after-the-last-date-of-your-poll": "après le dernier jour de votre sondage.",
"version-x": "Version %s",
"add-a-column": "Ajouter une colonne",
"adding-a-column": "Ajout de colonne",
"all-comments-deleted": "Tous les commentaires ont été supprimés",
"all-votes-deleted": "Tous les votes ont été supprimés",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "En tant qu'administrateur·rice, vous pouvez modifier toutes les lignes de ce sondage avec ce bouton",
"back-to-the-poll": "Retour au sondage",
"choice-added": "Choix ajouté",
"collect-the-emails-of-the-polled-users-for-the-choice": "Collecter les courriels des utilisateurs pour ce choix",
"column-deleted": "Colonne supprimée",
"comment-deleted": "Commentaire supprimé",
"confirm-removal-of-all-comments": "Confirmer la suppression de tous les commentaires de ce sondage",
"confirm-removal-of-all-votes": "Confirmer la suppression de tous les votes de ce sondage",
"confirm-removal-of-the-column": "Confirmer la suppression de cette colonne.",
"confirm-removal-of-your-poll": "Confirmer la suppression du sondage",
"delete-poll": "Supprimer le sondage",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Vous pouvez enfin également modifier les informations relatives à ce sondage comme le titre, les commentaires ou encore votre courriel.",
"keep-comments": "Garder les commentaires",
"keep-the-comments": "Garder les commentaires",
"keep-the-poll": "Je garde le sondage",
"keep-the-votes": "Garder les votes",
"keep-this-poll": "Garder ce sondage",
"keep-votes": "Garder les votes",
"poll-fully-deleted": "Sondage complètement supprimé",
"poll-saved": "Sondage sauvegardé",
"remove-column": "Effacer la colonne",
"remove-the-comments": "Supprimer les commentaires",
"remove-the-votes": "Supprimer les votes",
"the-poll-was-created": "Le sondage a été créé",
"vote-added": "Vote ajouté",
"vote-deleted": "Vote supprimé",
"vote-updated": "Vote mis à jour",
"you-can-add-a-new-scheduling-date-to-your-poll": "Vous pouvez ajouter une date à votre sondage.",
"your-poll-has-been-removed": "Votre sondage a été supprimé !",
"and-add-a-new-column-with": "et si vous avez oublié de saisir un choix, vous pouvez rajouter une colonne en cliquant sur",
"remove-a-column-or-a-line-with": "effacer une colonne ou une ligne avec",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Si nécessaire » pour cette option ont laissé les courriels suivants :",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Non » pour cette option ont laissé les courriels suivants :",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Oui » pour cette option ont laissé les courriels suivants :",
"deletion-date": "Date de suppression :",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Pour participer à ce sondage, veuillez entrer votre nom, choisir toutes les valeurs qui vous conviennent et valider votre choix avec le bouton en bout de ligne.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "L'administrateur·rice a verrouillé ce sondage. Les votes et commentaires sont gelés, il n'est plus possible de participer",
"the-poll-has-expired-it-will-soon-be-deleted": "Le sondage a expiré, il sera bientôt supprimé.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Votre vote a bien été pris en compte, mais faites attention : ce sondage n'autorise l'édition de votre vote qu'avec le lien personnalisé suivant ; conservez-le précieusement !"
}
,
"LANGUAGES": {
"DE": "Allemand",
"FR": "Français",
"EN": "English"
"BR": "Breton",
"CA": "Canadien",
"EL": "el",
"ES": "Espagnol",
"EN": "English",
"GL": "gl",
"HU": "hu",
"IT": "Italien",
"NL": "Néérlandais",
"OC": "oc",
"SV": "sv"
}
}

1930
src/assets/i18n/po/br.po Executable file

File diff suppressed because it is too large Load Diff

1951
src/assets/i18n/po/ca.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Krouiñ ur sontadeg",
"define-dates-or-subjects-to-choose-from": "Despizit an deiziadoù pe an danvezioù da zibab",
"discuss-and-make-a-decision": "Kaozeit ha kemerit ho tiviz",
"do-you-want-to": "Fellout a ra deoc'h",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Ur gwazerezh enlinenn evit prientiñ un emgav pe kemer un diviz a-stroll en un doare eeun hag aes eo Framadate. N'eus marilhadur ebet goulennet.",
"here-is-how-it-works": "Setu penaos ez a en-dro:",
"send-the-poll-link-to-your-friends-or-colleagues": "Kasit ere ar sontadeg d'ho mignoned pe d'ho kenseurted",
"what-is-framadate": "Petra eo?",
"view-an-example": "gwelet ur skouer?",
"cecill-b-license": "CeCILL-B eo",
"framadate-is-licensed-under-the": "Dindan al lañvaz",
"framadate-was-initially-based-on": "War",
"the-software": "Ar meziant",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "eo diazezet Framadate. Ur meziant diorroet gant Skol-Veur Straßburg an hini eo. Gant ar gevredigezh Framasoft eo diorroet bremañ.",
"grow-your-own": "Digreizennit ho stlenneg",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Ma fell deoc'h staliañ ar meziant evit hoc'h arver personel ha gounit emrenerezh e c'hallit kaout skoazell war:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Evit kemer perzh e diorren ar meziant, kinnig gwellaennoù pe e bellgargañ, kit war",
"the-development-site": "lec'hienn an diorren",
"Actions": "Gweredeoù",
"Administration": "Pajenn verañ",
"Author": "Aozer",
"back-to-administration": "Distreiñ d'ar bajenn verañ",
"change-the-poll": "Kemmañ ar sontadeg",
"Email": "Chomlec'h postel",
"Executed": "",
"expiry-date": "Diamzeriñ",
"Fail": "C'hwitadenn",
"failed": "C'hwitadenn:",
"Format": "Mentrezh",
"Installation": "BR_Installation",
"Logs": "Roll istor",
"Migration": "Treuztiriañ",
"Nothing": "Netra",
"pages": "Pajennoù:",
"poll-id": "Naoudi ar sontadeg",
"poll-deleted": "Dilemel ar sontadeg",
"Polls": "Sontadegoù",
"Purge": "Spurjañ",
"purge-the-polls": "Spurjañ ar sontadegoù",
"purged": "Spurjet:",
"see-the-poll": "Sellet ar sontadeg",
"skipped": "Tremenet:",
"Status": "",
"succeeded": "Berzh:",
"Success": "Berzh",
"Summary": "Diverradenn",
"Title": "Titl",
"Votes": "Mouezhioù",
"Waiting": "",
"polls-in-the-database-at-this-time": "sontadeg er stlennvon",
"check-again": "Gwiriañ en-dro",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Aliañ a reomp gweredekaat an askouezh OpenSSL evit ;uioc'h a surentez.",
"consider-setting-the-date-timezone-in-php-ini": "Aliañ a reomp da lakaat date.timezone e php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "BR_Consider setting « session.cookie_httponly = 1 » inside your php.ini or add « php_value session.cookie_httponly 1 » to your .htaccess so that cookies can't be accessed through Javascript.",
"continue-the-installation": "Kenderc'hel gant ar staliadur",
"cookies-are-served-from-http-only": "BR_Cookies are served from HTTP only.",
"installation-checking": "Gwiriañ ar staliadur",
"openssl-extension-loaded": "Askouezh OpenSSL karget.",
"php-intl-extension-is-enabled": "Gweredekaet eo an askouezh PHP Intl.",
"php-version-x-is-enough-needed-at-least-php-x": "Trawalc'h eo an handelv PHP %s (PHP %s goulennet d'an nebeutañ).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "N'haller ket skrivañ e kavlec'h ar restr kefluniañ (%s) ha n'eus ket eus ar restr kefluniañ (%s).",
"the-config-file-directory-x-is-writable": "Gallout a raer skrivañ e kavlec'h ar restr kefluniañ (%s).",
"the-config-file-exists": "Amañ mañ ar restr kefnluniañ.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "BR_The template compile directory (%s) doesn't exist in \"%s\". Retry the installation process.",
"the-template-compile-directory-x-is-not-writable": "N'haller ket skrivañ e kavlec'h kempunañ ar patromoù (%s).",
"the-template-compile-directory-x-is-writable": "Gallout a raer skrivañ e kavlec'h kempunañ ar patromoù (%s).",
"you-need-to-enable-the-php-intl-extension": "Ret eo deoc'h gweredekaat an askouezh PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Re gozh eo hoc'h handelv PHP (%s). PHP %s a zo dleet evit an arload-ma d'an nebeutañ.",
"date-timezone-is-set": "Arventennet eo date.timezone.",
"add-a-comment-to-the-poll": "Ouzhpennañ un evezhiadenn d'ar sontadeg",
"Comment": "Hoc'h evezhiadenn",
"comment-saved": "Evezhiadenn ouzhpennet",
"Comments": "Evezhiadennoù",
"enter-your-name-and-comment-prior-to-submitting-the-form": "",
"remove-comment": "Dilemel an evezhiadenn",
"submit-comment": "Kas an evezhiadenn",
"a-e-b-y": "%A %e a viz %B %Y",
"a-b-e-y": "%A %e a viz %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d-%m-%Y %H:%M",
"add-range-dates": "Ouzhpennañ",
"end-date": "Deiziad dibenn",
"start-date": "Deiziad deraouiñ",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Gallout a rit diuzañ 4 miz d'ar muiañ",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "devezh/miz/bloaz",
"edit-link-for-poll-x": "Ere embann ar sontadeg \"%s\"",
"here-is-the-link-for-editing-your-vote": "Setu an ere evidoc'h da embann ho mouezh:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Ma ne fell ket deoc'h koll hoc'h ere personelaet e c'hallomp kas anezhañ dre bostel.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Gortozit % eilenn, amzer deomp kas ur postel deoc'h ha klaskit en-dro.",
"REMINDER": "KOUNADUR",
"Send": "Kas",
"the-email-address-is-not-correct": "Direizh eo ar chomlec'h postel.",
"your-reminder-has-been-successfully-sent": "Kaset eo bet ho kounadur gant berzh!",
"adding-vote-failed": "C'hwitadenn war ouzhpennadenn ar vouezh",
"cant-create-an-empty-column": "N'haller ket krouiñ ur bann goullo.",
"cant-create-the-config-php-file-in-x": "N'haller ket krouiñ ar restr config.php e '%s'.",
"comment-failed": "C'hiwtadenn war an evezhiadenn",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Diweredekaet eo an toupinoù war ho merdeer. Ret eo gweredekaat anezho evit krouiñ ur sontadeg.",
"enter-a-name": "Ret eo deoc'h enankañ un anv",
"enter-a-name-and-a-comment": "Enankit un anv hag un evezhiadenn!",
"enter-a-title": "Ret eo enankañ un titl!",
"enter-an-email-address": "Ret eo enankañ ur chomlec'h postel",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "",
"error": "Fazi!",
"failed-to-delete-all-comments": "C'hwitadenn en ur zilemel an holl evezhiadennoù",
"failed-to-delete-all-votes": "C'hwitadenn en ur zilemel an holl vouezhioù",
"failed-to-delete-column": "C'hwitadenn war zilemel ar bann",
"failed-to-delete-the-comment": "C'hwitadenn en ur zilemel an evezhiadenn",
"failed-to-delete-the-poll": "C'hwitadenn en ur zilemel ar sontadeg",
"failed-to-delete-the-vote": "C'hwitadenn en ur zilemel ar vouezh!",
"failed-to-insert-the-comment": "C'hwitadenn en ur enlakaat an evezhiadenn!",
"failed-to-save-poll": "C'hwitadenn war enrolladenn ar sontadeg",
"forbidden": "Difennet!",
"GenericErrorPollCreation": "",
"identifier-is-already-used": "Arveret eo an naoudi endeo",
"if-you-quit-now-your-changes-will-be-lost": "",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Diweredekaet eo JavaScript war ho merdeer. Ret eo gweredekaat anezhañ evit krouiñ ur sontadeg.",
"missing-values": "Talvoudoù a vank",
"no-polls-found": "N'eus bet kavet sontadeg ebet",
"password-is-empty": "Goullo eo ar ger-tremen.",
"passwords-do-not-match": "Ne glot ket ar gerioù-tremen.",
"poll-has-been-updated-before-you-vote": "Hizivaet eo bet ar sontadeg a-raok ho mouezh",
"something-has-gone-wrong": "Un dra bennak a-dreuz a zo...",
"something-is-wrong-with-the-format": "Un dra bennak a-dreuz a zo gant ar mentrezh",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Didalvoudek eo ar chomlec'h postel enanket. Ret eo lakaat ur chomlec'h postel talvoudek (skouer: mari-jo@gozmail.bzh)evit resevout ere ar sontadeg.",
"the-column-already-exists": "Ar bann a zo anezhañ endeo",
"the-name-is-invalid": "Didalvoudek eo an anv.",
"the-name-youve-chosen-already-exists-in-this-poll": "An anv bet enanket ganeoc'h a zo dioutañ endeo!",
"there-is-a-problem-with-your-choices": "Ur gudenn a zo gant ho tibaboù",
"this-identifier-is-not-allowed": "",
"this-poll-doesnt-exist": "N'eus ket eus ar sontadeg-mañ!",
"unable-to-connect-to-database": "N'haller ket kennaskañ ouzh ar stlennvon",
"update-vote-failed": "C'hwitadenn war hizivadenn ar vouezh",
"you-already-voted": "Mouezhzt ho peus endeo",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "N'hallit ket krouiñ ur sontadeg gant respontoù kuzhet gant an dibarzhioù embann da heul:",
"you-cant-select-more-than-x-dates": "N'hallit ket diuzañ ouzhpenn %d a zeiziadoù",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry.",
"Address": "",
"created-polls": "",
"have-a-good-day": "Devezh mat deoc'h!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Sed aze roll ho sontadegoù a verit war %s",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Ma n'ho peus ket savet ar goulenn ha ma soñj deoc'h eo un drougimplij eus ar gwazerezh kit e darempred gant merour %s.",
"its-address": "",
"last-access-date": "",
"list-of-your-polls": "Roll ho sontadegoù",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: kaset eo bet ar postel-mañ deoc'h peogwir ho peus (pe unan bennak all) goulennet vefe kaset deoc'h roll ar sontadegoù krouet gant ar chomlec'h postel-mañ.",
"polls-saved-inside-this-browser": "",
"polls-sent": "Kaset eo bet ar sontadegoù",
"remove-all-my-polls-from-this-browsers-index": "",
"remove-poll-from-index": "",
"send-me-my-polls": "Kasit din ma sontadegoù",
"send-my-polls-by-email": "",
"the-date-you-created-or-last-accessed-the-poll": "",
"the-title-of-the-poll": "Titl ar sontadeg",
"there-are-no-polls-saved-inside-your-browser-yet": "",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "",
"visited-polls": "",
"in-the-format-name-mail-com": "(dindan ar stumm anv@postel.bzh)",
"Add": "Ouzhpennañ",
"Back": "Kent",
"back-to-the-homepage-of": "Distreiñ da bajenn degemer",
"Cancel": "Nullañ",
"Choice": "Dibab",
"Classic": "Klasel",
"Close": "Serriñ",
"create-your-own-polls": "Aozit emgavioù en un doare simpl ha dieub",
"creation-date": "Deiziad krouidigezh:",
"Date": "Deiziad",
"Day": "Devezh",
"Description": "Deskrivadur",
"Edit": "Modify",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Ur gwazerezh enlinenn evit prientiñ un emgav pe kemer un diviz a-stroll en un doare eeun hag aes eo Framadate.",
"Home": "Degemer",
"Information": "Alc'hwez",
"legend": "Alc'hwez:",
"Link": "Ere",
"Markdown": "Markdown",
"Next": "Kenderc'hel",
"No": "Ket",
"page-generated-in": "Pajenn savet e",
"Poll": "Sontadeg",
"Remove": "Dilemel",
"Save": "Enrollañ",
"Search": "Klask",
"Time": "Eur",
"under-reserve": "Marteze",
"Validate": "Kadarnaat",
"Yes": "Ya",
"your-email-address": "Ho chomlec'h postel",
"your-name": "Hoc'h anv",
"days": "a zevezhioù",
"for": "evit",
"months": "a vizioù",
"seconds": "eilenn",
"vote": "vouezh",
"votes": "a vouezhioù",
"with": "gant",
"make-a-standard-poll": "Krouiñ ur sontadeg klasel",
"schedule-an-event": "Krouiñ ur sontadeg deiziadoù",
"where-are-my-polls": "E pelec'h emañ ma sontadegoù?",
"administrator-mail-address": "Chomlec'h postel an arload",
"application-name": "Anv an arload",
"clean-url": "URL naet",
"database-driver": "",
"database-hostname": "",
"database-name": "",
"database-port": "",
"default-language": "Yezh dre ziouer",
"General": "Hollek",
"Install": "Staliañ",
"migration-table": "Taol dreuztiriañ",
"Password": "Ger-tremen",
"Prefix": "Rakger",
"respond-to-mail-address": "Chomlec'h postel respont",
"User": "Arveriad",
"change-language": "Kemmañ ar yezh",
"select-language": "Dibabit ar yezh",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "« Hir eo an hent, met frank eo ar roudenn… »<br/>Framasoft a vev gant ho roadoù hepken (didennadus eus an tailhoù).<br/>Trugarez en a-raok evit ho skoazell https://soutenir.framasoft.org.",
"message-for-the-author": "Evit an aozer hepken",
"notification-of-poll-x": "Rebuziñ ur sontadeg: %s",
"participant-link": "Da gas d'an dud sontet",
"poll-participation-x": "Mouezh nevez: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Kemmet eo bet ho sontadeg. Gallout a rit e adkavout gant an ere-mañ: <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Dilamet eo bet ho sontadeg \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Trugarez da gemer perzh er sontadeg dre an ere a-us",
"thank-you-for-your-trust": "Trugarez evit ho fiziañs.",
"this-is-the-message-to-forward-to-the-poll-participants": "Setu ar gemennadenn a rank bezañ kaset d'an holl dud sontet.<br/>Gallout a rit bremañ treuzkas ar gemennadenn-mañ d'an holl dud a rank kemer perzh er sontadeg.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "ARABAT treuzkas ar gemennadenn-mañ d'an dud sontet. Evit aozer ar sontadeg eo nemetken.<br/><br/>Gallout a rit kemmañ ar sontadeg gant an ere da heul ",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "a zo o paouez mouezhiañ.<br/>Gallout a rit adkavout ho sontadeg gant an ere da heul",
"has-just-created-a-poll-called": " a zo o paouez krouiñ ur sontadeg anvet ",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "a zo o paouez hizivaat ur vouezh.<br/>Gallout a rit adkavout ho sontadeg gant an ere da heul",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "a zo o paouez skrivañ un evezhiadenn.<br/>Gallout a rit adkavout ho sontadeg gant an ere da heul",
"thank-you-for-your-understanding": "Trugarez evit ho komprenezon.",
"the-application": "War drezalc'h",
"is-currently-under-maintenance": "emañ an arload evit ar mare.",
"submit-access": "Mont-tre",
"wrong-password": "Ger-tremen direizh",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Ret eo deoc'h reiñ ur ger-tremen evit kemer perzh er sontadeg.",
"you-have-to-provide-a-password-to-access-the-poll": "Ret eo deoc'h reiñ ur ger-tremen evit mont d'ar sontadeg.",
"x-option": "",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "",
"best-choice": "Dibab gwellañ",
"best-choices": "Dibaboù gwellañ",
"Chart": "Diervad",
"display-the-chart-of-the-results": "Skrammañ diervad an disoc'hoù",
"edit-line-x": "Kemmañ al linenn: %s",
"link-to-edit-this-particular-line": "",
"remove-line": "Dilemel al linenn:",
"save-choices": "Enrollañ an dibaboù",
"scroll-to-the-left": "Dibunañ d'an tu kleiz",
"scroll-to-the-right": "Dibunañ d'an tu dehou",
"the-current-best-choice-is": "Evit ar mare, an dibab gant ar muiañ a vouezhioù a zo:",
"the-current-best-choices-are": "Evit ar mare, an dibaboù gant ar muiañ a vouezhioù a zo:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "",
"Total": "Sammad",
"vote-no-for": "Mouezhiañ « ket » evit",
"vote-yes-for": "Mouezhiañ « ya » evit",
"votes-under-reserve-for": "",
"polled-user": "mouezhier",
"polled-users": "a vouezhierien",
"admin-link-for-the-poll": "Ere merañ ar sontadeg",
"cancel-the-description-edit": "Nullañ an embann deskrivadur",
"cancel-the-email-address-edit": "Nullañ embann ar chomlec'h postel",
"cancel-the-expiration-date-edit": "Nullañ embann an deiziad diamzeriñ",
"cancel-the-name-edit": "Nullañ embann an anv",
"cancel-the-rules-edit": "Nullañ embann an aotreoù",
"cancel-the-title-edit": "Nullañ embann an titl",
"creator-of-the-poll": "Aozer ar sontadeg",
"edit-name": "Embann an anv",
"edit-the-description": "Embann an deskrivadur",
"edit-the-email-address": "Embann ar chomlec'h postel",
"edit-the-expiry-date": "Embann an deiziad diamzeriñ",
"edit-the-poll-rules": "Embann aotreoù ar sontadeg",
"edit-title": "Kemmañ an titl",
"export-to-csv": "Ezporzhiañ e CSV",
"no-password": "Ger-tremen ebet",
"only-votes-are-protected": "Only votes are protected",
"password-protected": "Gwarezet gant ur ger-tremen",
"poll-rules": "Aotreoù ar sontadeg",
"Print": "Moullañ",
"public-link-to-the-poll": "Ere foran ar sontadeg",
"remove-all-comments": "Dilemel an holl evezhiadennoù",
"remove-all-votes": "Dilemel an holl vouezhioù",
"remove-password": "Dilemel ar ger-tremen",
"remove-the-poll": "Dilemel ar sontadeg",
"results-are-hidden": "Kuzhet eo an disoc'hoù",
"results-are-visible": "Gwelus eo an disoc'ho",
"rich-editor": "Embanner pinvidik",
"save-the-description": "Enrollañ an deskrivadur",
"save-the-email-address": "Enrollañ ar chomlec'h postel",
"save-the-new-expiration-date": "Enrollañ an deiziad diamzeriñ",
"save-the-new-name": "Enrollañ an anv nevez",
"save-the-new-rules": "Enrollañ an aotreoù nevez",
"save-the-new-title": "Enrollañ an titl nevez",
"simple-editor": "Embanner eeun",
"title-of-the-poll": "Titl ar sontadeg",
"voters-email-addresses-are-collected": "",
"voters-email-addresses-are-collected-and-required": "",
"voters-email-addresses-are-collected-required-and-verified": "",
"voters-email-addresses-are-not-collected": "",
"votes-and-comments-are-locked": "Prennet eo ar mouezhioù hag an evezhiadennoù",
"votes-protected-by-password": "Gwarezet eo ar mouezhioù gant ur ger-tremen",
"all-voters-can-modify-any-vote": "An holl vouezhierien a c'hall kemmañ an holl vouezhioù",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Ma lakait un naoudi re simpl e c'hallo tud all dont war bajenn ho sontadeg. Aliet eo gwareziñ anezhañ gant ur ger-tremen.",
"collect-voters-email-addresses": "",
"Confirmation": "Kadarnadur",
"customize-the-url": "Personelaat an ere",
"email-addresses-are-collected-but-not-required": "",
"email-addresses-are-not-collected": "",
"email-addresses-are-required": "",
"email-addresses-are-required-and-verified": "",
"go-to-step-2": "Mont d'ar bazenn 2",
"limit-the-amount-of-voters-per-option": "Bevenniñ an niver a vouezhierien dre zibab",
"more-informations-here": "Titouroù ouzhpenn amañ:",
"only-the-poll-maker-can-see-the-poll-results": "N'eus nemet krouer ar sontadeg a c'hell gwelet an disoc'hoù",
"optional-parameters": "Arventennoù diret",
"Permissions": "Aotreoù",
"poll-creation-1-of-3": "Krouidigezh ar sontadeg (1 war 3)",
"poll-link": "Naoudi",
"poll-title": "Titl ar sontadeg",
"receive-an-email-for-each-new-comment": "Degemer ur postel evit pep evezhiadenn nevez",
"receive-an-email-for-each-new-vote": "Degemer ur postel evit pep mouezh nevez",
"required-fields-cannot-be-left-blank": "Trugarez da leuniañ ar maeziennoù ret, merket gant ur *.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Gallout a ra an naoudi enderc'hel lizherennoù, niverennoù ha tiredoù \"-\".",
"the-results-are-publicly-visible": "Gwelus d'an holl eo an disc'hoù",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Evit kinklañ an deskrivadur e c'hallit ober gant ar c'hevradur Markdown.",
"use-a-password-to-restrict-access": "Lakaat ur ger-tremen evit bevenniñ an haeziñ",
"value-max": "Talvoud uc'hek",
"voters-can-modify-their-own-vote-themselves": "Pep mouezhier a c'hell kemmañ e vouezh",
"votes-cannot-be-modified": "N'hall ket ar mouezhioù bezañ kemmet",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "",
"you-are-in-the-poll-creation-section": "Dibabet ho peus krouiñ ur sontadeg nevez.",
"you-can-enable-or-disable-the-editor-at-will": "Gallout a rit gweredekaat pe ziweredekaat an embanner diouzh ho tibab.",
"votes-per-option": "",
"go-to-step-3": "Mont d'ar bazenn 3",
"return-to-step-1": "Distreiñ d'ar bazenn 1",
"add-a-choice": "Ouzhpennañ un dibab",
"add-a-link-or-an-image": "Ouzhpennañ un ere pe ur skeudenn",
"alternative-text": "Testenn dazeilel",
"links-or-images-can-be-included-using": "Gallout a rit enlakaat ereoù pe skeudennoù gant",
"markdown-syntax": "ar c'hevreadur Markdown",
"poll-options-2-of-3": "Dibab an danvezioù (2 War 3)",
"remove-a-choice": "Dilemel an dibab diwezhañ",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Diret eo ar maeziennoù-mañ. Gallout a rit ouhzpennañ un ere, ur skeudenn pe an daou.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Evit krouiñ ur sontadeg klasel eo ret deoc'h kinnig daou zibab disheñvel d'an nebeutañ.",
"url-of-the-image": "URL ar skeudenn",
"you-can-add-or-remove-choices-with-the-buttons": "Gallout a rit ouzhpennañ pe zilemel dibaboù ouzhpenn gant an afelloù",
"add-a-day": "Ouzhpennañ un devezh",
"add-a-time-slot": "Ouzhpennañ un eur",
"choose-dates-for-your-poll": "Dibabit deiziadoù ho sontadeg",
"copy-times-from-the-first-day": "Eilañ eurioù an devezh kentañ war an devezhioù all",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Evit kement devezh diuzet e c'hallit dibab eurioù (da skouer: \"8e\", \"8:30\", \"8e-10e\", \"diouzh noz\", hag all.)",
"poll-dates-2-of-3": "Dibab an deiziadoù (2 war 3)",
"remove-a-day": "Dilemel an devezh diwezhañ",
"remove-a-time-slot": "Dileml an eur diwezhañ",
"remove-all-days": "Dilemel an holl zevezhioù",
"remove-all-times": "Dilemel an holl eurioù",
"remove-this-day": "Dilemel an devezh-mañ",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Evit krouiñ ur sontadeg deiziadoù eo ret deoc'h kinnig daou zibab d'an nebeutañ (div eur evit an hevelep devezh pe daou zevezh).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Gallout a rit ouzhpennañ pe dilemel devezhioù hag eurioù ouzhpenn gant an afelloù",
"back-to-step-2": "Distreiñ d'ar bazenn 2",
"confirm-the-creation-of-your-poll": "Kadarnait krouidigezh ho sontadeg",
"create-the-poll": "Krouiñ ar sontadeg",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Deiziad diellaouiñ:",
"list-of-options": "Roll ho tibaboù",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Ur wech kadarnaet krouidigezh ar sontadeg e viot adheñchet ent emgefreek etrezek pajenn verañ ar sontadeg.",
"removal-date-and-confirmation-3-of-3": "Deiziad diamzeriñ ha kadarnadur (3 war 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "War un dro e resevot daou bostel: unan zo ennañ un ere etrezek ho sontadeg evit e rannañ gant an dud da vezañ sontet hag un eil ennañ un ere etrezek pajenn verañ ar sontadeg.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Gallout a rit dibab un deiziad diellaouiñ tostoc'h.",
"your-poll-will-automatically-be-archived": "Diellaouet e vo ho sontadeg ent emgefreek",
"your-poll-will-be-automatically-archived-in-x-days": "Diellaouet e vo ho sontadeg a-benn %d a zevezhioù ent emgefreek.",
"after-the-last-date-of-your-poll": "goude devezh diwezhañ ar sontadeg.",
"version-x": "",
"add-a-column": "Ouzhpennañ ur bann",
"adding-a-column": "Ouzhpennañ ur bann",
"all-comments-deleted": "Dilamet eo bet an holl evezhiadennoù",
"all-votes-deleted": "Dilamet eo bet an holl vouezhioù",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Dre ma'z oc'h merour e c'hallit kemmañ holl linennoù ar sontadeg gant an afell-mañ",
"back-to-the-poll": "Distreiñ d'ar sontadeg",
"choice-added": "Dibab ouzhpennet",
"collect-the-emails-of-the-polled-users-for-the-choice": "",
"column-deleted": "Bann dilamet",
"comment-deleted": "Dilamet eo bet an evezhiadenn",
"confirm-removal-of-all-comments": "Kadarnaat dilemel holl evezhiadennoù ar sontadeg",
"confirm-removal-of-all-votes": "Kadarnaat dilemel holl vouezhioù ar sontadeg",
"confirm-removal-of-the-column": "Kadarnaat dilemel ar bann.",
"confirm-removal-of-your-poll": "Kadarnaat dilemel ar sontadeg",
"delete-poll": "",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Gallout a rit ivez kemmañ an titouroù a-zivout ar sontadeg evel an titl, an evezhiadennoù pe ho chomlec'h postel.",
"keep-comments": "Mirout an evezhiadennoù",
"keep-the-comments": "Mirout an evezhiadennoù",
"keep-the-poll": "Mirout ar sontadeg",
"keep-the-votes": "Mirout ar mouezhioù",
"keep-this-poll": "Mirout ar sontadeg",
"keep-votes": "Mirout ar mouezhioù",
"poll-fully-deleted": "Sontadeg dilamet betek penn",
"poll-saved": "Enrollet eo bet ar sontadeg",
"remove-column": "Dilemel ar bann",
"remove-the-comments": "Dilemel an evezhiadennoù",
"remove-the-votes": "Dilemel ar mouezhioù",
"the-poll-was-created": "",
"vote-added": "",
"vote-deleted": "Dilamet eo bet ar vouezh",
"vote-updated": "",
"you-can-add-a-new-scheduling-date-to-your-poll": "Gallout a rit ouzhpennañ un deiziad d'ho sontadeg.",
"your-poll-has-been-removed": "Dilamet eo bet ar sontadeg!",
"and-add-a-new-column-with": "ha m'ho peus disoñjet un dibab e c'hallit ouzhpennañ ur bann en ur glikañ war",
"remove-a-column-or-a-line-with": "dilemel ur bann pe ul linenn gant",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "",
"deletion-date": "Deiziad dilemel:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Evit kemer perzh er sontadeg-mañ, enankit hoc'h anv, grit ho tibab ha kadarnait gant an afell e dibenn al linenn.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Prennet eo bet ar sontadeg-mañ gant ar merour. Skornet eo ar mouezhioù hag an evezhiadennoù, n'hallit ket kemer perzh ken",
"the-poll-has-expired-it-will-soon-be-deleted": "Diamzeret eo ar sontadeg, dilamet e vo a-benn nebeut.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Kemeret eo bet ho mouezh e kont, met diwallit: n'hallit kemmañ ho mouezh nemet gant an ere personelaet da-heul : mirit anezhañ gant evezh!"
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Creeu una enquesta",
"define-dates-or-subjects-to-choose-from": "Definiu les dates o els temes per triar",
"discuss-and-make-a-decision": "Discutiu i preneu una decisió",
"do-you-want-to": "Voleu",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate és un servei en línia per a planificar una cita o prendre una decisió de forma ràpida i senzilla. No cal registrar-s'hi.",
"here-is-how-it-works": "Així és com funciona:",
"send-the-poll-link-to-your-friends-or-colleagues": "Envieu l'enllaç de l'enquesta als amics o col·legues",
"what-is-framadate": "Què és Framadate?",
"view-an-example": "veure'n un exemple?",
"cecill-b-license": "Llicència CeCILL-B",
"framadate-is-licensed-under-the": "Framadate està llicenciat sota la",
"framadate-was-initially-based-on": "Framadate inicialment es va basar en",
"the-software": "El programari",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Aquest programari requereix tenir el Javascript i les galetes habilitats. És compatible amb els navegadors web següents:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "programari desenvolupat per la Universitat d'Estrasburg. Actualment desenvolupat per l'associació Framasoft.",
"grow-your-own": "Cultiveu el vostre jardí",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Si voleu instal·lar el programari per al vostre ús i, per tant, augmentar la vostra independència, us podem ajudar en:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Per a participar en el desenvolupament del programari, suggerir millores o senzillament baixar-lo, visiteu",
"the-development-site": "el lloc del desenvolupament",
"Actions": "Accions",
"Administration": "Administració",
"Author": "Autor",
"back-to-administration": "Torna a l'administració",
"change-the-poll": "Canvia l'enquesta",
"Email": "Adreça electrònica",
"Executed": "Executat",
"expiry-date": "Data de caducitat",
"Fail": "Fallada",
"failed": "Ha fallat:",
"Format": "Format de",
"Installation": "Instal·lació",
"Logs": "Registre",
"Migration": "Migració",
"Nothing": "Res",
"pages": "Pàgines:",
"poll-id": "ID de l'enquesta",
"poll-deleted": "Enquesta eliminada",
"Polls": "Enquestes",
"Purge": "Purga",
"purge-the-polls": "Purga les enquestes",
"purged": "Purgats:",
"see-the-poll": "Mostra l'enquesta",
"skipped": "Omesos:",
"Status": "Estat",
"succeeded": "Amb èxit:",
"Success": "Èxit",
"Summary": "Resum",
"Title": "Títol",
"Votes": "Vots",
"Waiting": "Esperant",
"polls-in-the-database-at-this-time": "enquestes a la base de dades en aquest moment",
"check-again": "Comprova-ho una altra vegada",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Per a més seguretat, considereu habilitar l'extensió OpenSSL de PHP OpenSSL.",
"consider-setting-the-date-timezone-in-php-ini": "Considereu definir un valor per a date.timezone al fitxer php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Considereu definirr «session.cookie_httponly = 1» al fitxer php.ini o afegegiu «php_value session.cookie_httponly 1» al fitxer .htaccess de forma que les galetes no siguin accessibles des de Javascript.",
"continue-the-installation": "Continua amb la instal·lació",
"cookies-are-served-from-http-only": "Les galetes només es poden enviar des d'HTTP.",
"installation-checking": "Comprovació de la instal·lació",
"openssl-extension-loaded": "L'extensió OpenSSL s'ha carregat.",
"php-intl-extension-is-enabled": "L'extensió de PHP Intl està habilitada.",
"php-version-x-is-enough-needed-at-least-php-x": "La versió %s PHP és suficient (almenys es necessita PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "El directori de fitxers de configuració (%s) no es pot escriure i el fitxer de configuració (%s) no existeix.",
"the-config-file-directory-x-is-writable": "El directori de fitxers de configuració (%s) es pot escriure.",
"the-config-file-exists": "Existeix el fitxer de configuració.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "El directori de compilació de plantilles (%s) no existeix al «%s». Torneu a intentar el procés d'instal·lació.",
"the-template-compile-directory-x-is-not-writable": "El directori de compilació de plantilla (%s) no es pot escriure.",
"the-template-compile-directory-x-is-writable": "El directori de compilació de la plantilla (%s) es pot escriure.",
"you-need-to-enable-the-php-intl-extension": "Cal que habiliteu l'extensió de PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "La vostra versió PHP (%s) és massa vella. Aquesta aplicació necessita almenys PHP %s.",
"date-timezone-is-set": "date.timezone està establert.",
"add-a-comment-to-the-poll": "Afegeix un comentari a l'enquesta",
"Comment": "Comentari",
"comment-saved": "S'ha desat el comentari",
"Comments": "Comentaris",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Introduïu el vostre nom i el comentari abans d'enviar el formulari",
"remove-comment": "Elimina el comentari",
"submit-comment": "Envia el comentari",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %e %B, %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%m/%d/%Y %H:%M",
"add-range-dates": "Afegeix un interval de dates",
"end-date": "Data final",
"start-date": "Data d'inici",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Podeu seleccionar com a màxim 4 mesos",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "dia/mes/any",
"edit-link-for-poll-x": "Edita l'enllaç de l'enquesta «%s»",
"here-is-the-link-for-editing-your-vote": "Aquest és l'enllaç per a editar el vostre vot:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Si no voleu perdre l'enllaç personalitzat, us el podem enviar per correu electrònic.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Espereu %d segons abans que us puguem enviar un correu electrònic i torna-ho a provar.",
"REMINDER": "RECORDATORI",
"Send": "Envia",
"the-email-address-is-not-correct": "L'adreça de correu electrònic no és correcta.",
"your-reminder-has-been-successfully-sent": "El recordatori s'ha enviat amb èxit!",
"adding-vote-failed": "S'ha produït un error en afegir el vot",
"cant-create-an-empty-column": "No es pot crear una columna buida.",
"cant-create-the-config-php-file-in-x": "No es pot crear el fitxer config.php a «%s».",
"comment-failed": "Error de comentari",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Les galetes estan desactivades al vostre navegador. Cal que estiguin activades per a poder crear una enquesta.",
"enter-a-name": "Introduïu un nom",
"enter-a-name-and-a-comment": "Introduiïu un nom i un comentari!",
"enter-a-title": "Intrdoduïu un títol",
"enter-an-email-address": "Introduïu una adreça de correu electrònic",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Error en la limitació de la quantitat de vots: El valor ha de ser un enter més gran que 0",
"error": "Error!",
"failed-to-delete-all-comments": "No s'han pogut eliminar tots els comentaris",
"failed-to-delete-all-votes": "No s'han pogut eliminar tots els vots",
"failed-to-delete-column": "No s'ha pogut eliminar la columna",
"failed-to-delete-the-comment": "No s'han pogut eliminar el comentari",
"failed-to-delete-the-poll": "No s'ha pogut eliminar l'enquesta",
"failed-to-delete-the-vote": "No s'ha pogut eliminar el vot!",
"failed-to-insert-the-comment": "No s'ha pogut inserí el comentari!",
"failed-to-save-poll": "No ha pogut desar l'enquesta",
"forbidden": "Prohibit!",
"GenericErrorPollCreation": "Oh, no! No s'ha pogut crear l'enquesta. Torneu-ho a intentar.",
"identifier-is-already-used": "Ja s'utilitza l'identificador",
"if-you-quit-now-your-changes-will-be-lost": "Si tanqueu ara, es perdran els canvis.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript està desactivat al vostre navegador. Cal activar-lo per a crear una enquesta.",
"missing-values": "Valors que manquen",
"no-polls-found": "No s'ha trobat cap enquesta",
"password-is-empty": "La contrasenya és buida.",
"passwords-do-not-match": "Les contrasenyes no coincideixen.",
"poll-has-been-updated-before-you-vote": "L'enquesta s'ha actualitzat abans que votéssiu",
"something-has-gone-wrong": "Alguna cosa no ha anat bé...",
"something-is-wrong-with-the-format": "Alguna cosa està malament amb el format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Alguna cosa està malament amb el format: els URL personalitzats només han de consistir en caràcters alfanumèrics i guions.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Alguna cosa està malament amb el format: el nom no hauria de tenir cap espai abans ni després",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "L'adreça no és correcta. Has d'introduir una adreça de correu electrònic vàlida (com ara r.stallman@outlock.com) per a rebre l'enllaç a l'enquesta.",
"the-column-already-exists": "La columna ja existeix",
"the-name-is-invalid": "El nom no és vàlid.",
"the-name-youve-chosen-already-exists-in-this-poll": "El nom que heu introduït ja existeix!",
"there-is-a-problem-with-your-choices": "Hi ha un problema amb les vostres eleccions",
"this-identifier-is-not-allowed": "Aquest identificador no és permès",
"this-poll-doesnt-exist": "Aquesta enquesta no existeix!",
"unable-to-connect-to-database": "No es pot connectar a la base de dades",
"update-vote-failed": "S'ha produït un error en actualitzar el vot",
"you-already-voted": "Ja heu votat",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "No podeu crear una enquesta amb resultats ocults amb la següent opció:· ",
"you-cant-select-more-than-x-dates": "No podeu seleccionar més de %d dates",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "No heu omplert la primera secció de la creació de l'enquesta, o la sessió ha expirat.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "El vostre vot no es tindrà en compte, perquè algú ha votat en el mateix moment i això entra en conflicte amb les vostres opcions i les condicions de l'enquesta. Torneu-ho a provar.",
"Address": "Adreça",
"created-polls": "Enquestes creades",
"have-a-good-day": "Que tingueu un bon dia!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Aquesta és la llista de les enquestes que gestioneu a %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Si no sou l'origen d'aquesta acció i si penseu que aquest és un abús del servei, notifiqueu-ho a l'administrador a %s.",
"its-address": "La seva adreça",
"last-access-date": "Última data d'accés",
"list-of-your-polls": "Llista de les vostres enquestes",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: aquest correu electrònic s'ha enviat perquè heu sol·licitat (o algú altre) recuperar les enquestes creades amb la vostra adreça de correu electrònic.",
"polls-saved-inside-this-browser": "Enquestes desades en aquest navegador",
"polls-sent": "Enquestes enviades",
"remove-all-my-polls-from-this-browsers-index": "Elimina totes les meves enquestes de l'índex d'aquest navegador",
"remove-poll-from-index": "Elimina l'enquesta de l'índex",
"send-me-my-polls": "Envia'm les enquestes",
"send-my-polls-by-email": "Envia les meves enquestes per correu electrònic",
"the-date-you-created-or-last-accessed-the-poll": "La data en què vau crear o accedir per darrer cop a l'enquesta",
"the-title-of-the-poll": "El títol de l'enquesta",
"there-are-no-polls-saved-inside-your-browser-yet": "Encara no hi ha enquestes desades al navegador",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Per a eliminar aquestes dades feu clic a la paperera a la línia corresponent o feu clic a l'opció «Elimina els índexs d'enquestes». Això no suprimirà les enquestes.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Per a ajudar-vos a trobar les enquestes anteriors, desem cada enquesta que creeu o accediu al navegador. Aquestes dades només es desen en aquest navegador. Es desaran les dades següents:",
"visited-polls": "Enquestes visitades",
"in-the-format-name-mail-com": "(en format nom@mail.com)",
"Add": "Afegeix",
"Back": "Enrere",
"back-to-the-homepage-of": "Torna a la pàgina d'inici de",
"Cancel": "Cancel·la",
"Choice": "Elecció",
"Classic": "Clàssic",
"Close": "Tanca",
"create-your-own-polls": "Creeu les vostres enquestes",
"creation-date": "Data de creació:",
"Date": "Data",
"Day": "Dia",
"Description": "Descripció",
"Edit": "Edita",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate és un servei en línia per a planificar una cita o prendre una decisió de forma ràpida i senzilla.",
"Home": "Inici",
"Information": "Informació",
"legend": "Llegenda:",
"Link": "Enllaç",
"Markdown": "Markdown",
"Next": "Pròxim",
"No": "No",
"page-generated-in": "Pàgina generada en",
"Poll": "Enquesta",
"Remove": "Elimina",
"Save": "Desa",
"Search": "Cerca",
"Time": "Hora",
"under-reserve": "Si és necessari",
"Validate": "Valida",
"Yes": "Sí",
"your-email-address": "La vostra adreça de correu electrònic",
"your-name": "El vostre nom",
"days": "dies",
"for": "per a",
"months": "mesos",
"seconds": "segons",
"vote": "vot",
"votes": "vots",
"with": "amb",
"make-a-standard-poll": "Feu una enquesta estàndard",
"schedule-an-event": "Programeu un esdeveniment",
"where-are-my-polls": "On són les enquestes?",
"administrator-mail-address": "Adreça de correu d'administrador",
"application-name": "Nom de l'aplicació",
"clean-url": "Neteja l'URL",
"database-driver": "Controlador de base de dades",
"database-hostname": "Nom del servidor de base de dades",
"database-name": "Nom de la base de dades",
"database-port": "Port de base de dades",
"default-language": "Llengua predeterminada",
"General": "General",
"Install": "Instal·la",
"migration-table": "Taula de migració",
"Password": "Contrasenya",
"Prefix": "Prefix",
"respond-to-mail-address": "Respon a l'adreça de correu",
"User": "Usuari",
"change-language": "Canvia la llengua",
"select-language": "Trieu la llengua",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"El camí és llarg, però el camí està clar ...\" <br/> Framasoft només viu de les vostres donacions. <br/> Gràcies per endavant pel vostre suport https://soutenir.framasoft.org",
"message-for-the-author": "Missatge per a l'autor",
"notification-of-poll-x": "Notificació de l'enquesta: %s",
"participant-link": "Enllaç per als participants",
"poll-participation-x": "Participació en l'enquesta: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Algú ha canviat l'enquesta de l'enllaç següent <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Algú acaba d'eliminar la vostra enquesta «%s».",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Gràcies per participar en l'enquesta de l'enllaç següent",
"thank-you-for-your-trust": "Gràcies per la vostra confiança.",
"this-is-the-message-to-forward-to-the-poll-participants": "Aquest és el missatge que es reenviarà als participants de l'enquesta.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Aquest missatge NO l'heu d'enviar als participants de l'enquesta. Heu de mantenir-lo privat. <br/> <br/> Podeu modificar l'enquesta amb l'enllaç següent",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "ha votat. <br/> Podeu visitar l'enquesta a l'enllaç",
"has-just-created-a-poll-called": "acaba de crear una enquesta anomenada",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "s'ha actualitzat una votació. <br/> Podeu visitar l'enquesta en l'enllaç",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "ha escrit un comentari. <br/> Podeu visitar l'enquesta a l'enllaç",
"thank-you-for-your-understanding": "Gràcies per la vostra comprensió.",
"the-application": "L'aplicació",
"is-currently-under-maintenance": "actualment està en manteniment.",
"submit-access": "Enviar accés",
"wrong-password": "La contrasenya és errònia",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Cal que proporcioneu una contrasenya perquè pugeu participar en l'enquesta.",
"you-have-to-provide-a-password-to-access-the-poll": "Cal que proporcioneu una contrasenya per a accedir a l'enquesta.",
"x-option": "%s opció",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Qualsevol persona podrà veure la vostra adreça de correu electrònic després que hàgiu votat",
"best-choice": "Millor elecció",
"best-choices": "Millors eleccions",
"Chart": "Gràfic",
"display-the-chart-of-the-results": "Mostra el gràfic dels resultats",
"edit-line-x": "Edita la línia: %s",
"link-to-edit-this-particular-line": "Enllaç per a editar aquesta línia en particular",
"remove-line": "Suprimeix la línia:",
"save-choices": "Desa les opcions",
"scroll-to-the-left": "Desplaça't cap a l'esquerra",
"scroll-to-the-right": "Desplaça't cap a la dreta",
"the-current-best-choice-is": "Ara per ara, l'opció més votada és:",
"the-current-best-choices-are": "Ara per ara, les opcions més votades són:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "L'enllaç per a editar aquesta línia en particular s'ha copiat al porta-retalls!",
"Total": "Total",
"vote-no-for": "Vota «no» per a",
"vote-yes-for": "Vota «sí» per a",
"votes-under-reserve-for": "Vots «si és necessari» per a",
"polled-user": "usuari enquestat",
"polled-users": "usuaris enquestats",
"admin-link-for-the-poll": "Enllaç d'administració per a l'enquesta",
"cancel-the-description-edit": "Cancel·la l'edició de la descripció",
"cancel-the-email-address-edit": "Cancel·la l'edició de l'adreça electrònica",
"cancel-the-expiration-date-edit": "Cancel·la l'edició de la data de venciment",
"cancel-the-name-edit": "Cancel·la l'edició del nom",
"cancel-the-rules-edit": "Cancel·la l'edició de les regles",
"cancel-the-title-edit": "Cancel·la l'edició del títol",
"creator-of-the-poll": "Creador de l'enquesta",
"edit-name": "Edita el nom",
"edit-the-description": "Edita la descripció",
"edit-the-email-address": "Edita l'adreça de correu electrònic",
"edit-the-expiry-date": "Edita la data de venciment",
"edit-the-poll-rules": "Edita les regles d'enquesta",
"edit-title": "Edita el títol",
"export-to-csv": "Exporta a CSV",
"no-password": "Sense contrasenya",
"only-votes-are-protected": "Només els vots estan protegits",
"password-protected": "Contrasenya protegida",
"poll-rules": "Regles de l'enquesta",
"Print": "Imprimeix",
"public-link-to-the-poll": "Enllaç públic de l'enquesta",
"remove-all-comments": "Elimina tots els comentaris",
"remove-all-votes": "Elimina tots els vots",
"remove-password": "Elimina la contrasenya",
"remove-the-poll": "Elimina l'enquesta",
"results-are-hidden": "Els resultats són ocults",
"results-are-visible": "Els resultats són visibles",
"rich-editor": "Editor enriquit",
"save-the-description": "Desa la descripció",
"save-the-email-address": "Desa l'adreça de correu electrònic",
"save-the-new-expiration-date": "Desa la nova data de venciment",
"save-the-new-name": "Desa el nom nou",
"save-the-new-rules": "Desa les regles noves",
"save-the-new-title": "Desa el títol nou",
"simple-editor": "Editor simple",
"title-of-the-poll": "Títol de l'enquesta",
"voters-email-addresses-are-collected": "Es recullen les adreces de correu electrònic dels votants",
"voters-email-addresses-are-collected-and-required": "Les adreces de correu electrònic dels votants es recullen i són necessàries",
"voters-email-addresses-are-collected-required-and-verified": "Les adreces de correu electrònic dels votants es recullen, són necessàries i es verifiquen",
"voters-email-addresses-are-not-collected": "Les adreces de correu electrònic dels votants no es recullen",
"votes-and-comments-are-locked": "Els vots i els comentaris estan blocats",
"votes-protected-by-password": "Vots protegits amb contrasenya",
"all-voters-can-modify-any-vote": "Tots els votants poden modificar qualsevol vot",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Si definiu un identificador per a l'enquesta, podríeu facilitar-hi l'accés per a persones no desitjades. Es recomana protegir-la amb una contrasenya.",
"collect-voters-email-addresses": "Recull les adreces de correu electrònic dels votants",
"Confirmation": "Confirmació",
"customize-the-url": "Personalitza l'URL",
"email-addresses-are-collected-but-not-required": "Les adreces electròniques es recopilen però no són necessàries",
"email-addresses-are-not-collected": "No es recullen adreces de correu electrònic",
"email-addresses-are-required": "Les adreces correu electrònic són necessàries",
"email-addresses-are-required-and-verified": "Ls adreces de correu electrònic són necessàries i es verifiquen",
"go-to-step-2": "Ves al pas 2",
"limit-the-amount-of-voters-per-option": "Limita la quantitat de votants per opció",
"more-informations-here": "Més informació aquí:",
"only-the-poll-maker-can-see-the-poll-results": "Només el creador de l'enquesta pot veure els resultats de l'enquesta",
"optional-parameters": "Paràmetres opcionals",
"Permissions": "Permisos",
"poll-creation-1-of-3": "Creació d'enquestes (1 de 3)",
"poll-link": "Enllaç de l'enquesta",
"poll-title": "Títol de l'enquesta",
"receive-an-email-for-each-new-comment": "Rebreu un correu electrònic per a cada comentari nou",
"receive-an-email-for-each-new-vote": "Rebeu un correu electrònic per a cada nou vot",
"required-fields-cannot-be-left-blank": "Els camps obligatoris no es poden deixar en blanc.",
"the-identifier-can-contain-letters-numbers-and-dashes": "L'identificador pot contenir lletres, números i guions \"-\".",
"the-results-are-publicly-visible": "Els resultats són visibles públicament",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Per a fer que la descripció sigui més atractiva, podeu utilitzar el format Markdown.",
"use-a-password-to-restrict-access": "Utilitzeu una contrasenya per restringir l'accés",
"value-max": "Valor màxim",
"voters-can-modify-their-own-vote-themselves": "Els votants poden modificar el seu vot ells mateixos",
"votes-cannot-be-modified": "Els vots no es poden modificar",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Advertència: qualsevol pot veure les adreces de correu electrònic dels usuaris enquestats ja que tots els votants poden modificar qualsevol vot. Heu de restringir les regles de permís.",
"you-are-in-the-poll-creation-section": "Sou a la secció de creació d'enquestes.",
"you-can-enable-or-disable-the-editor-at-will": "Podeu habilitar o deshabilitar l'editor a voluntat.",
"votes-per-option": "vots per opció",
"go-to-step-3": "Vés al pas 3",
"return-to-step-1": "Torna al pas 1",
"add-a-choice": "Afegeix una elecció",
"add-a-link-or-an-image": "Afegeix un enllaç o una imatge",
"alternative-text": "Text alternatiu",
"links-or-images-can-be-included-using": "Es poden incloure enllaços o imatges utilitzant",
"markdown-syntax": "Sintaxi Markdown",
"poll-options-2-of-3": "Opcions de votació (2 de 3)",
"remove-a-choice": "Elimina una elecció",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Aquests camps són opcionals. Podeu afegir un enllaç, una imatge o ambdós.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Per a crear una enquesta, heu de proporcionar almenys dues opcions diferents.",
"url-of-the-image": "URL de la imatge",
"you-can-add-or-remove-choices-with-the-buttons": "Podeu afegir o eliminar opcions amb els botons",
"add-a-day": "Afegeix un dia",
"add-a-time-slot": "Afegeix un espai horari",
"choose-dates-for-your-poll": "Tria dates per a l'enquesta",
"copy-times-from-the-first-day": "Copia els temps del primer dia",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Per cada dia seleccionat, podeu suggerir temps de trobada (per exemple, \"8h\", \"8:30\", \"8h-10h\", \"tarda\", etc.)",
"poll-dates-2-of-3": "Dates de l'enquesta (2 de 3)",
"remove-a-day": "Elimina un dia",
"remove-a-time-slot": "Elimina un espai horari",
"remove-all-days": "Elimina tots els dies",
"remove-all-times": "Elimina tots els temps",
"remove-this-day": "Elimina aquest dia",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Per a programar un esdeveniment, cal que proporcioneu almenys dues opcions (per exemple, dos espais horaris en un o dos dies).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Podeu afegir o treure dies i hores addicionals amb els botons",
"back-to-step-2": "Torna al pas 2",
"confirm-the-creation-of-your-poll": "Confirmeu la creació de l'enquesta",
"create-the-poll": "Crea l'enquesta",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Data de venciment:",
"list-of-options": "Llista d'opcions",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Un cop hagis confirmat la creació de l'enquesta, se us redirigirà automàticament a la pàgina d'administració de l'enquesta.",
"removal-date-and-confirmation-3-of-3": "Data de supressió i confirmació (3 de 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "A continuació, rebreu dos correus electrònics: un que contindrà l'enllaç de l'enquesta per a enviar-la als participants i l'altre que contindrà l'enllaç a la pàgina d'administració de l'enquesta.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Podeu establir una data de venciment específica de l'enquesta.",
"your-poll-will-automatically-be-archived": "L'enquesta s'arxivarà automàticament",
"your-poll-will-be-automatically-archived-in-x-days": "L'enquesta s'arxivarà automàticament d'aquí a %d dies.",
"after-the-last-date-of-your-poll": "després de l'última data de l'enquesta.",
"version-x": "Versió %s",
"add-a-column": "Afegeix una columna",
"adding-a-column": "Creació d'una columna",
"all-comments-deleted": "S'han suprimit tots els comentaris",
"all-votes-deleted": "S'han suprimit tots els vots",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Com a administrador, podeu canviar totes les línies d'aquesta enquesta amb aquest botó",
"back-to-the-poll": "Torna a l'enquesta",
"choice-added": "S'ha afegit una opció",
"collect-the-emails-of-the-polled-users-for-the-choice": "Recopila els correus electrònics dels usuaris enquestats per a l'elecció",
"column-deleted": "S'ha suprimit la columna",
"comment-deleted": "Comentaris eliminats",
"confirm-removal-of-all-comments": "Confirmeu l'eliminació de tots els comentaris",
"confirm-removal-of-all-votes": "Confirma l'eliminació de tots els vots",
"confirm-removal-of-the-column": "Confirmeu l'eliminació de la columna.",
"confirm-removal-of-your-poll": "Confirmeu l'eliminació de l'enquesta",
"delete-poll": "Suprimeix l'enquesta",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Finalment, podeu canviar les propietats d'aquesta enquesta, com ara el títol, els comentaris o l'adreça de correu electrònic.",
"keep-comments": "Conserva els comentaris",
"keep-the-comments": "Conserva els comentaris",
"keep-the-poll": "Conserva l'enquesta",
"keep-the-votes": "Conserva els vots",
"keep-this-poll": "Conserva aquesta enquesta",
"keep-votes": "Conserva els vots",
"poll-fully-deleted": "L'enquesta s'ha eliminat completament",
"poll-saved": "S'ha desat la votació",
"remove-column": "Elimina la columna",
"remove-the-comments": "Elimina els comentaris",
"remove-the-votes": "Elimina els vots",
"the-poll-was-created": "S'ha creat l'enquesta.",
"vote-added": "S'ha afegit el vot",
"vote-deleted": "S'ha suprimit el vot",
"vote-updated": "S'ha actualitzat el vot",
"you-can-add-a-new-scheduling-date-to-your-poll": "Podeu afegir una altra data de programació a l'enquesta.",
"your-poll-has-been-removed": "S'ha eliminat l'enquesta!",
"and-add-a-new-column-with": "i afegeix una columna nova amb",
"remove-a-column-or-a-line-with": "treu una columna o una línia amb",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Els usuaris que han votat «Si cal» per a aquesta opció han deixat aquestes adreces de correu electrònic:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Els usuaris que han votat «No» per a aquesta opció han deixat aquestes adreces de correu electrònic:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Els usuaris que han votat «Sí» per a aquesta opció han deixat aquestes adreces de correu electrònic:",
"deletion-date": "Data de supressió:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Si voleu votar en aquesta enquesta, cal que indiqueu el vostre nom, feu l'elecció i envieu-la seleccionant el botó de desar al final de la línia.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "L'administrador ha blocat aquesta enquesta. Els vots i els comentaris estan congelats, ja no és possible de participar-hi",
"the-poll-has-expired-it-will-soon-be-deleted": "L'enquesta ha caducat, aviat se suprimirà.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "S'ha desat el vostre vot, però tingueu en compte que cal que conserveu aquest enllaç personalitzat per a poder-lo modificar."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Umfrage erstellen",
"define-dates-or-subjects-to-choose-from": "Zeitpunkte oder andere Optionen zur Auswahl stellen",
"discuss-and-make-a-decision": "Besprechen und Entscheidungen treffen",
"do-you-want-to": "Wollen Sie sich",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate ist ein Online-Dienst, der Ihnen bei der Absprache von Terminen oder der Entscheidungsfindung hilft. Es ist keine Registrierung erforderlich.",
"here-is-how-it-works": "So funktioniert es:",
"send-the-poll-link-to-your-friends-or-colleagues": "Link zur Umfrage an Ihre Freunde oder Kollegen schicken",
"what-is-framadate": "Was ist Framadate?",
"view-an-example": "ein Beispiel ansehen?",
"cecill-b-license": "CeCILL-B Lizenz",
"framadate-is-licensed-under-the": "Sie ist lizenziert unter der",
"framadate-was-initially-based-on": "Framadate basierte zunächst auf",
"the-software": "Die Software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Für diese Software müssen JavaScript und Cookies aktiviert sein. Sie ist mit folgenden Webbrowsern kompatibel:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": ", einer von der Universität von Straßburg entwickelten Software. Heute wird sie vom Verein Framasoft weiterentwickelt.",
"grow-your-own": "Bestellen Sie ihren Garten",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Wenn Sie die Software für die eigene Nutzung installieren und damit Ihre Unabhängigkeit erhöhen möchten, helfen wir Ihnen auf:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Um an der Entwicklung der Software teilzunehmen, Verbesserungen vorzuschlagen oder um sie herunterzuladen, rufen sie diese Seite auf: ",
"the-development-site": "die Seite der Entwickler",
"Actions": "Aktionen",
"Administration": "Verwaltung",
"Author": "Autor",
"back-to-administration": "Zurück zur Verwaltung",
"change-the-poll": "Umfrage ändern",
"Email": "E-Mail-Adresse",
"Executed": "Ausgeführt",
"expiry-date": "Ablaufdatum",
"Fail": "Fehler",
"failed": "Fehlgeschlagen:",
"Format": "Format",
"Installation": "Installation",
"Logs": "Verlauf",
"Migration": "Migration",
"Nothing": "Nichts",
"pages": "Seiten:",
"poll-id": "Umfrage-ID",
"poll-deleted": "Umfrage gelöscht",
"Polls": "Umfragen",
"Purge": "Säuberung",
"purge-the-polls": "Umfragen vollständig löschen",
"purged": "Entfernt:",
"see-the-poll": "Umfrage ansehen",
"skipped": "Übersprungene:",
"Status": "Status",
"succeeded": "Erfolgreich:",
"Success": "Erfolg",
"Summary": "Zusammenfassung",
"Title": "Titel",
"Votes": "Stimmen",
"Waiting": "Wartend",
"polls-in-the-database-at-this-time": "Umfragen derzeit in der Datenbank",
"check-again": "Erneut prüfen",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Für eine verbesserte Sicherheit sollten Sie in Erwägung ziehen, die OpenSSL-Erweiterung zu aktivieren.",
"consider-setting-the-date-timezone-in-php-ini": "Ziehen Sie in Erwägung, date.timezone in der php.ini zu konfigurieren.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Setzen Sie « session.cookie_httponly = 1 » in Ihrer php.ini oder fügen Sie « php_value session.cookie_httponly 1 » Ihrer .htaccess Datei hinzu, so dass auf Cookies nicht per Javascript zugegriffen werden kann.",
"continue-the-installation": "Installation fortsetzen",
"cookies-are-served-from-http-only": "Cookies werden nur über HTTP ausgeliefert.",
"installation-checking": "Überprüfung der Installation",
"openssl-extension-loaded": "Die OpenSSL-Erweiterung ist geladen.",
"php-intl-extension-is-enabled": "Die PHP-Erweiterung Intl ist aktiviert.",
"php-version-x-is-enough-needed-at-least-php-x": "PHP Version %s ist ausreichend (mindestens PHP %s wird benötigt).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Der Konfigurationspfad (%s) ist nicht beschreibbar und es existiert keine Konfigurationsdatei (%s).",
"the-config-file-directory-x-is-writable": "Die Konfigurationsdatei (%s) ist beschreibbar.",
"the-config-file-exists": "Die Konfigurationsdatei existiert.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Der Vorlagen-Übersetzungspfad (%s) existiert in \"%s\" nicht. Versuchen Sie die Installation erneut zu starten.",
"the-template-compile-directory-x-is-not-writable": "Der Vorlagen-Übersetzungspfad (%s) ist nicht beschreibbar.",
"the-template-compile-directory-x-is-writable": "Der Vorlagen-Übersetzungspfad (%s) ist beschreibbar.",
"you-need-to-enable-the-php-intl-extension": "Sie müssen die PHP-Erweiterung Intl aktivieren.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Ihre PHP-Version (%s) ist zu alt. Diese Anwendung benötigt mindestens PHP Version %s.",
"date-timezone-is-set": "date.timezone ist konfiguriert.",
"add-a-comment-to-the-poll": "Kommentar zur Abstimmung abgeben",
"Comment": "Ihr Kommentar",
"comment-saved": "Kommentar hinzugefügt",
"Comments": "Kommentare der Teilnehmer",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Geben Sie Ihren Namen und einen Kommentar ein bevor Sie das Formular abschicken",
"remove-comment": "Kommentar entfernen",
"submit-comment": "Kommentar abschicken",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, den %e. %B %Y",
"b-y": "%B %Y",
"y-m-x": "%Y-%m-%d",
"a-e": "%a %e",
"m-x-y-h-m": "%Y-%m-%d %H:%M",
"add-range-dates": "Datumsbereich hinzufügen",
"end-date": "Enddatum",
"start-date": "Startdatum",
"Y-m-d": "d-m-Y",
"you-can-select-at-most-4-months": "Es können maximal 4 Monate ausgewählt werden",
"yyyy-mm-dd": "dd-mm-yyyy",
"yyyy-mm-dd-for-humans": "Tag-Monat-Jahr",
"edit-link-for-poll-x": "Link für die Abstimmung \"%s\" bearbeiten",
"here-is-the-link-for-editing-your-vote": "Hier ist der Link zum Ändern ihrer Stimme:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Wenn Sie Ihren persönlichen Link nicht verlieren möchten, können wir Ihnen diesen per E-Mail zusenden.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Bitte warten Sie %d Sekunden bis die E-Mail an Sie gesendet werden kann. Versuchen Sie es dann erneut.",
"REMINDER": "HINWEIS",
"Send": "Absenden",
"the-email-address-is-not-correct": "Die E-Mail-Adresse ist fehlerhaft.",
"your-reminder-has-been-successfully-sent": "Ihre Erinnerungsnachricht wurde erfolgreich abgesendet!",
"adding-vote-failed": "Stimmabgabe fehlgeschlagen",
"cant-create-an-empty-column": "Es kann keine leere Spalte angelegt werden.",
"cant-create-the-config-php-file-in-x": "Die config.php kann nicht in '%s' angelegt werden.",
"comment-failed": "Abgabe des Kommentars gescheitert",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Cookies werden von Ihrem Browser abgelehnt. Um eine Umfrage zu erstellen, müssen Sie Cookies zulassen.",
"enter-a-name": "Geben Sie einen Namen ein",
"enter-a-name-and-a-comment": "Geben Sie einen Namen und einen Kommentar ein!",
"enter-a-title": "Titel eingeben",
"enter-an-email-address": "Geben Sie eine E-Mail Adresse ein",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Fehler bei der Beschränkung der Anzahl der Stimmen: Der Wert muss größer als 0 sein",
"error": "Fehler!",
"failed-to-delete-all-comments": "Es konnten nicht alle Kommentare gelöscht werden",
"failed-to-delete-all-votes": "Es konnten nicht alle Stimmen gelöscht werden",
"failed-to-delete-column": "Löschen der Spalte fehlgeschlagen",
"failed-to-delete-the-comment": "Der Kommentar konnte nicht gelöscht werden",
"failed-to-delete-the-poll": "Die Umfrage konnte nicht gelöscht werden",
"failed-to-delete-the-vote": "Löschen der Stimme gescheitert!",
"failed-to-insert-the-comment": "Speichern des Kommentars gescheitert!",
"failed-to-save-poll": "Speichern der Umfrage fehlgeschlagen",
"forbidden": "Verboten!",
"GenericErrorPollCreation": "Oh nein! Deine Umfrage konnte leider nicht erstellt werden. Bitte versuche es später erneut.",
"identifier-is-already-used": "Der Bezeichner ist bereits in Verwendung",
"if-you-quit-now-your-changes-will-be-lost": "Wenn die Seite jetzt verlassen wird, werden die Änderungen verworfen.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Javascript ist in Ihrem Browser deaktiviert. Um eine Umfrage zu erstellen, müssen Sie es aktivieren.",
"missing-values": "Fehlende Werte",
"no-polls-found": "Keine Umfragen gefunden",
"password-is-empty": "Das Passwort ist leer.",
"passwords-do-not-match": "Die Passwörter stimmen nicht überein.",
"poll-has-been-updated-before-you-vote": "Die Abstimmung wurde vor Ihrer Stimmabgabe aktualisiert",
"something-has-gone-wrong": "Etwas ging schief ...",
"something-is-wrong-with-the-format": "Mit dem Format stimmt etwas nicht",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Etwas stimmt mit dem Format nicht: Individuelle URLs dürfen nur aus alphanumerischen Zeichen und Bindestrichen bestehen.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Etwas ist falsch mit dem Format: Es darf kein Leerzeichen vor oder nach dem Namen stehen.",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Die Adresse ist nicht korrekt! Sie sollten eine gültige E-Mail-Adresse angeben, damit Ihnen der Link zur Umfrage zugeschickt werden kann.",
"the-column-already-exists": "Die Spalte existiert bereits",
"the-name-is-invalid": "Der Name ist ungültig.",
"the-name-youve-chosen-already-exists-in-this-poll": "Der von Ihnen eingegebene Name existiert schon in dieser Umfrage!",
"there-is-a-problem-with-your-choices": "Es gibt ein Problem mit Ihrer Auswahl",
"this-identifier-is-not-allowed": "Dieser Bezeichner ist nicht erlaubt",
"this-poll-doesnt-exist": "Diese Umfrage existiert nicht!",
"unable-to-connect-to-database": "Datenbankverbindung fehlgeschlagen",
"update-vote-failed": "Aktualisierung der Stimme fehlgeschlagen",
"you-already-voted": "Sie haben bereits abgestimmt",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Sie können mit den folgenden Optionen keine Umfrage mit versteckten Ergebnissen erzeugen: ",
"you-cant-select-more-than-x-dates": "Es können nicht mehr als %d Termine ausgewählt werden",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Sie haben den ersten Teil der Umfrageerstellung nicht ausgefüllt oder Ihre Session ist abgelaufen.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Ihre Stimme wurde nicht gezählt, da jemand in der Zwischenzeit gewählt hat und dies mit Ihrer Abstimmung und den Umfrage-Bestimmungen in Konflikt stand. Bitte versuchen Sie es erneut.",
"Address": "Adresse",
"created-polls": "Erstellte Umfragen",
"have-a-good-day": "Einen schönen Tag noch!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Hier ist die Liste der Umfragen, die Sie auf %s verwalten:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Wenn Sie diesen Vorgang nicht veranlasst haben und glauben, dass dieser Dienst missbraucht wurde, benachrichtigen Sie bitte den Administrator unter %s.",
"its-address": "Ihre Adresse",
"last-access-date": "Letzter Zugriff",
"list-of-your-polls": "Liste Ihrer Umfragen",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: Diese E-Mail wurde abgeschickt weil Sie oder jemand anderes Zugriff auf die mit Ihrer E-Mail-Adresse angelegten Umfragen angefordert hat.",
"polls-saved-inside-this-browser": "Umfragen, die in diesem Browser gespeichert sind",
"polls-sent": "Umfragen abgeschickt",
"remove-all-my-polls-from-this-browsers-index": "Alle Umfragen aus dem Index dieses Browsers entfernen",
"remove-poll-from-index": "Umfrage vom Index entfernen",
"send-me-my-polls": "Senden Sie mir meine Umfragen",
"send-my-polls-by-email": "Schicken Sie mir meine Umfragen per E-Mail",
"the-date-you-created-or-last-accessed-the-poll": "Das Datum, an dem Sie die Umfrage erstellt oder auf sie zugegriffen haben",
"the-title-of-the-poll": "Der Titel der Umfrage",
"there-are-no-polls-saved-inside-your-browser-yet": "In Ihrem Browser wurden bisher noch keine Umfragen gespeichert",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Um diese Daten zu löschen klicken Sie auf den Mülleimer in der entsprechenden Zeile oder klicken Sie auf « Umfrage vom Index entfernen ». Ihre Umfragen selbst werden dabei nicht gelöscht.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Um Ihre bisherigen Umfragen leichter zu finden, speichern wir jede Umfrage, die Sie erstellt oder die Sie aufgerufen haben, in Ihrem Browser. Die folgenden Daten werden dabei gespeichert:",
"visited-polls": "Aufgerufene Umfragen",
"in-the-format-name-mail-com": "(Format: name@mail.com)",
"Add": "Hinzufügen",
"Back": "Zurück",
"back-to-the-homepage-of": "Zurück zur Startseite von ",
"Cancel": "Abbrechen",
"Choice": "Wahl",
"Classic": "Klassiker",
"Close": "Schließen",
"create-your-own-polls": "Eigene Umfragen erstellen",
"creation-date": "Erstellungsdatum:",
"Date": "Datum",
"Day": "Tag",
"Description": "Beschreibung",
"Edit": "Bearbeiten",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate ist ein Online-Dienst, der Ihnen bei der Absprache von Terminen oder der Entscheidungsfindung hilft.",
"Home": "Startseite",
"Information": "Information",
"legend": "Legende:",
"Link": "Link",
"Markdown": "Markdown",
"Next": "Weiter",
"No": "Nein",
"page-generated-in": "Seite generiert in",
"Poll": "Umfrage",
"Remove": "Entfernen",
"Save": "Speichern",
"Search": "Suche",
"Time": "Uhrzeit",
"under-reserve": "Unter Vorbehalt",
"Validate": "Bestätigen",
"Yes": "Ja",
"your-email-address": "Ihre E-Mail-Adresse",
"your-name": "Ihr Name",
"days": "Tage",
"for": "für",
"months": "Monate",
"seconds": "Sekunden",
"vote": "Stimme",
"votes": "Stimmen",
"with": "mit",
"make-a-standard-poll": "Klassische Umfrage",
"schedule-an-event": "Termin finden",
"where-are-my-polls": "Wo sind meine Umfragen?",
"administrator-mail-address": "E-Mail-Adresse der Anwendung/des Datenbankadministrators",
"application-name": "Name der Anwendung",
"clean-url": "Säubere URLs (boolean)",
"database-driver": "Datenbanktreiber",
"database-hostname": "Datenbank-Hostname",
"database-name": "Datenbankname",
"database-port": "Datenbank-Port",
"default-language": "Standardsprache",
"General": "Allgemeine Konfiguration",
"Install": "Installieren",
"migration-table": "Name der Tabelle, welche den Migrationsstatus speichert",
"Password": "Passwort",
"Prefix": "Tabellen-Präfix",
"respond-to-mail-address": "E-Mail-Adresse für automatische Antworten (sollte auf \"no-reply\" gesetzt werden)",
"User": "Datenbank-Benutzername",
"change-language": "Sprache wechseln",
"select-language": "Sprache wählen",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "„Die Strecke ist lang, aber der Weg ist frei… \"<br/>Framasoft besteht nur durch Ihre Spenden (in Frankreich von der Steuer absetzbar).<br/>Herzlichen Dank für Ihre Unterstützung! https://soutenir.framasoft.org",
"message-for-the-author": "Nachricht für den Autor",
"notification-of-poll-x": "Mitteilung bezüglich der Umfrage: %s",
"participant-link": "Nachricht für die Teilnehmer",
"poll-participation-x": "Beteiligung an der Umfrage: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Jemand hat gerade Ihre Umfrage auf <a href=\"%1$s\">%1$s</a> geändert.",
"someone-just-deleted-your-poll-x": "Jemand hat gerade Ihre Umfrage \"%s\" gelöscht.",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Danke, dass Sie an der Umfrage unter folgendem Link teilnehmen",
"thank-you-for-your-trust": "Danke für Ihr Vertrauen.",
"this-is-the-message-to-forward-to-the-poll-participants": "Dies ist die Nachricht an die Umfrageteilnehmer.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Diese Meldung sollte NICHT an die befragten Personen gesendet werden. Sie sollten sie für sich behalten. <br/><br/>Sie können Ihre Umfrage über den folgenden Link abändern",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "hat abgestimmt.<br/>Sie finden Ihre Umfrage über den Link",
"has-just-created-a-poll-called": " hat gerade eine Umfrage erstellt. Sie trägt den Titel",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "hat eine Stimme aktualisiert.<br/>Sie finden Ihre Umfrage über den Link",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "hat einen Kommentar geschrieben.<br/>Sie finden Ihre Umfrage über den Link",
"thank-you-for-your-understanding": "Danke für Ihr Verständnis.",
"the-application": "Die Anwendung",
"is-currently-under-maintenance": "wird gerade gewartet.",
"submit-access": "Eingabe bestätigen",
"wrong-password": "Falsches Passwort",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Sie müssen ein Passwort eingeben um an der Abstimmung teilzunehmen.",
"you-have-to-provide-a-password-to-access-the-poll": "Sie müssen ein Passwort eingeben um auf die Abstimmung zuzugreifen.",
"x-option": "%s Option",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Jeder wird Ihre E-Mail-Adresse sehen können nachdem Sie abgestimmt haben",
"best-choice": "Beste Alternative",
"best-choices": "Beste Alternativen",
"Chart": "Grafik",
"display-the-chart-of-the-results": "Ergebnisgrafik anzeigen",
"edit-line-x": "Zeile bearbeiten: %s",
"link-to-edit-this-particular-line": "Link zum Ändern dieser Zeile",
"remove-line": "Zeile entfernen:",
"save-choices": "Wahl speichern",
"scroll-to-the-left": "Nach links scrollen",
"scroll-to-the-right": "Nach rechts scrollen",
"the-current-best-choice-is": "Die beste Option ist derzeit:",
"the-current-best-choices-are": "Die besten Optionen sind derzeit:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Der Link zum Ändern dieser Zeile wurde in die Zwischenablage kopiert!",
"Total": "Insgesamt",
"vote-no-for": "Nein-Stimmen für",
"vote-yes-for": "Ja-Stimmen für",
"votes-under-reserve-for": "Ja-Stimmen unter Vorbehalt für",
"polled-user": "Stimme",
"polled-users": "Stimmen",
"admin-link-for-the-poll": "Administrationsseite der Umfrage",
"cancel-the-description-edit": "Änderungen der Beschreibung verwerfen",
"cancel-the-email-address-edit": "Abbruch, E-Mail-Adresse nicht ändern",
"cancel-the-expiration-date-edit": "Abbruch, Ablaufdatum nicht ändern",
"cancel-the-name-edit": "Abbruch, Namen nicht ändern",
"cancel-the-rules-edit": "Abbruch, Regeln nicht ändern",
"cancel-the-title-edit": "Abbruch, Titel nicht ändern",
"creator-of-the-poll": "Autor der Umfrage",
"edit-name": "Den Namen bearbeiten",
"edit-the-description": "Beschreibung bearbeiten",
"edit-the-email-address": "E-Mail-Adresse ändern",
"edit-the-expiry-date": "Das Ablaufdatum bearbeiten",
"edit-the-poll-rules": "Regeln der Umfrage bearbeiten",
"edit-title": "Titel bearbeiten",
"export-to-csv": "CSV-Export",
"no-password": "Kein Passwort",
"only-votes-are-protected": "Nur Abstimmungen sind geschützt",
"password-protected": "Passwortgeschützt",
"poll-rules": "Regeln der Umfrage",
"Print": "Drucken",
"public-link-to-the-poll": "Öffentlicher Link zur Umfrage",
"remove-all-comments": "Alle Kommentare löschen",
"remove-all-votes": "Alle Stimmen löschen",
"remove-password": "Passwort entfernen",
"remove-the-poll": "Umfrage löschen",
"results-are-hidden": "Ergebnisse werden ausgeblendet",
"results-are-visible": "Ergebnisse sind sichtbar",
"rich-editor": "Rich Text Editor",
"save-the-description": "Beschreibung speichern",
"save-the-email-address": "Die neue E-Mail-Adresse speichern",
"save-the-new-expiration-date": "Das neue Ablaufdatum speichern",
"save-the-new-name": "Den neuen Namen speichern",
"save-the-new-rules": "Neue Regeln speichern",
"save-the-new-title": "Den neuen Titel speichern",
"simple-editor": "Einfacher Editor",
"title-of-the-poll": "Titel der Umfrage",
"voters-email-addresses-are-collected": "Die E-Mail-Adressen der Wähler werden gesammelt",
"voters-email-addresses-are-collected-and-required": "Die E-Mail-Adressen der Wähler werden gesammelt und benötigt",
"voters-email-addresses-are-collected-required-and-verified": "Die E-Mail-Adressen der Wähler werden gesammelt, benötigt und überprüft",
"voters-email-addresses-are-not-collected": "Die E-Mail-Adressen der Wähler werden nicht gesammelt",
"votes-and-comments-are-locked": "Abstimmungen und Kommentare sind gesperrt",
"votes-protected-by-password": "Abstimmungen sind passwortgeschützt",
"all-voters-can-modify-any-vote": "Jeder Teilnehmer kann jede abgegebene Stimme ändern",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Mit der Verwendung eines Bezeichners können möglicherweise Personen unerwünscht Zugriff auf die Umfrage erhalten. Es wird empfohlen sie mit einem Passwort zu schützen.",
"collect-voters-email-addresses": "Sammeln der E-Mail-Adressen der Wähler",
"Confirmation": "Passwortbestätigung",
"customize-the-url": "Link anpassen",
"email-addresses-are-collected-but-not-required": "E-Mail-Adressen werden gesammelt aber sind nicht benötigt",
"email-addresses-are-not-collected": "E-Mail-Adressen werden nicht gesammelt",
"email-addresses-are-required": "E-Mail-Adressen werden benötigt",
"email-addresses-are-required-and-verified": "E-Mail-Adressen werden benötigt und überprüft",
"go-to-step-2": "Weiter zum 2. Schritt",
"limit-the-amount-of-voters-per-option": "Anzahl der Stimmen pro Option begrenzen",
"more-informations-here": "Weitere Informationen gibt es hier:",
"only-the-poll-maker-can-see-the-poll-results": "Einzig der Autor der Abstimmung kann die Ergebnisse einsehen",
"optional-parameters": "Optionale Einstellungen",
"Permissions": "Berechtigungen",
"poll-creation-1-of-3": "Umfrage erstellen (Schritt 1 von 3)",
"poll-link": "Bezeichner",
"poll-title": "Titel der Umfrage",
"receive-an-email-for-each-new-comment": "Bei jedem neuen Kommentar eine E-Mail erhalten",
"receive-an-email-for-each-new-vote": "Bei jeder neuen Stimme eine E-Mail erhalten",
"required-fields-cannot-be-left-blank": "Mit * markierte Felder müssen ausgefüllt sein.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Der Bezeichner kann Buchstaben, Zahlen und Bindestriche \"-\" enthalten.",
"the-results-are-publicly-visible": "Die Ergebnisse sind öffentlich einsehbar",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Sie können das Markdown Format nutzen um die Beschreibung attraktiver zu gestalten.",
"use-a-password-to-restrict-access": "Ein Passwort verwenden um den Zugriff zu beschränken",
"value-max": "Wert Max",
"voters-can-modify-their-own-vote-themselves": "Teilnehmer können ihre Stimmen verändern",
"votes-cannot-be-modified": "Stimmen können nicht verändert werden",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Achtung: Jeder kann die E-Mail-Adressen der zur Umfrage eingeladenen Benutzer sehen da jeder Wähler jede Stimme verändern kann. Sie sollten die Zugriffsrechte beschränken.",
"you-are-in-the-poll-creation-section": "Hier erstellen Sie die Umfrage",
"you-can-enable-or-disable-the-editor-at-will": "Sie können den Editor nach Belieben ein- und wieder ausschalten.",
"votes-per-option": "Stimmen pro Option",
"go-to-step-3": "Weiter zum 3. Schritt",
"return-to-step-1": "Zurück zum 1. Schritt",
"add-a-choice": "Eine Auswahlmöglichkeit hinzufügen",
"add-a-link-or-an-image": "Link oder Bild hinzufügen",
"alternative-text": "Alternativer Text",
"links-or-images-can-be-included-using": "Sie haben die Möglichkeit Links oder Bilder vorzuschlagen; verwenden Sie dazu",
"markdown-syntax": "Markdown Syntax",
"poll-options-2-of-3": "Umfrageoptionen (2 von 3)",
"remove-a-choice": "Eine Auswahlmöglichkeit entfernen",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Diese Felder sind optional. Sie können einen Link, ein Bild oder beides hinzufügen.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Beim Erstellen einer Umfrage müssen mindestens zwei Alternativen zur Auswahl gestellt werden.",
"url-of-the-image": "URL des Bildes",
"you-can-add-or-remove-choices-with-the-buttons": "Um Auswahlmöglichkeiten hinzuzufügen oder zu entfernen, verwenden Sie die Buttons",
"add-a-day": "Einen Tag hinzufügen",
"add-a-time-slot": "Eine Uhrzeit hinzufügen",
"choose-dates-for-your-poll": "Terminvorschläge für Ihre Umfrage machen",
"copy-times-from-the-first-day": "Uhrzeiten des ersten Tags kopieren",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Für jeden ausgewählten Tag können Sie fakultativ Uhrzeiten vorschlagen (z. B.: \"8h\", \"8:30\", \"8h-10h\", \"abends\", usw.)",
"poll-dates-2-of-3": "Umfragedaten (2 von 3)",
"remove-a-day": "Einen Tag entfernen",
"remove-a-time-slot": "Eine Uhrzeit entfernen",
"remove-all-days": "Alle Tage entfernen",
"remove-all-times": "Alle Uhrzeiten entfernen",
"remove-this-day": "Diesen Tag entfernen",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Um eine Terminabsprache zu konfigurieren, müssen Sie mindestens zwei alternative Zeitpunkte vorschlagen (zwei Uhrzeiten am gleichen Tag oder verschiedene Tage).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Sie können weitere Tage und Uhrzeiten über die Buttons hinzufügen oder entfernen",
"back-to-step-2": "Zurück zum 2. Schritt",
"confirm-the-creation-of-your-poll": "Bestätigen Sie die Erstellung ihrer Umfrage",
"create-the-poll": "Umfrage erstellen",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Tag der Archivierung:",
"list-of-options": "Liste Ihrer Auswahlmöglichkeiten",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Wenn Sie die Erzeugung ihrer Umfrage bestätigt haben, werden sie automatisch zur Administrationsseite ihrer Umfrage weitergeleitet.",
"removal-date-and-confirmation-3-of-3": "Abstimmungszeitraum und Bestätigung (3 von 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Sie werden zwei E-Mails erhalten: Die eine enthält den Link zur Umfrage für die Teilnehmer, die andere den Link zur Administrationsseite für Ihre Umfrage.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Sie können das Datum der Archivierung vorverlegen.",
"your-poll-will-automatically-be-archived": "Ihre Umfrage wird automatisch archiviert",
"your-poll-will-be-automatically-archived-in-x-days": "Ihre Umfrage wird automatisch in %d Tagen archiviert werden.",
"after-the-last-date-of-your-poll": "nach dem letzten Termin der Abstimmung archiviert.",
"version-x": "Version %s",
"add-a-column": "Spalte hinzufügen",
"adding-a-column": "Spalte hinzufügen",
"all-comments-deleted": "Alle Kommentare gelöscht",
"all-votes-deleted": "Alle Wertungen werden gelöscht",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Als Administrator der Umfrage können Sie alle Zeilen der Umfrage über diesen Button ändern",
"back-to-the-poll": "Zurück zur Umfrage",
"choice-added": "Option hinzugefügt",
"collect-the-emails-of-the-polled-users-for-the-choice": "Sammeln der E-Mail-Adressen der zur Abstimmung eingeladenen Benutzer für die Auswahl",
"column-deleted": "Spalte entfernt",
"comment-deleted": "Kommentar gelöscht",
"confirm-removal-of-all-comments": "Bestätigen Sie die Löschung aller Kommentare aus der Umfrage",
"confirm-removal-of-all-votes": "Bestätigen Sie die Entfernung aller Wertungen aus der Umfrage",
"confirm-removal-of-the-column": "Bestätigen Sie die Entfernung der Spalte",
"confirm-removal-of-your-poll": "Bestätigen Sie die Löschung ihrer Umfrage",
"delete-poll": "Umfrage löschen",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Abschließend können Sie Informationen wie Titel, Kommentare oder Ihre E-Mail-Adresse ändern.",
"keep-comments": "Kommentare beibehalten",
"keep-the-comments": "Kommentare beibehalten",
"keep-the-poll": "Umfrage beibehalten",
"keep-the-votes": "Wertungen beibehalten",
"keep-this-poll": "Diese Umfrage beibehalten",
"keep-votes": "Stimmabgaben beibehalten",
"poll-fully-deleted": "Umfrage vollständig gelöscht",
"poll-saved": "Umfrage gespeichert",
"remove-column": "Spalte entfernen",
"remove-the-comments": "Kommentare entfernen",
"remove-the-votes": "Stimmen entfernen",
"the-poll-was-created": "Die Umfrage wurde erstellt.",
"vote-added": "Stimme hinzugefügt",
"vote-deleted": "Stimme gelöscht",
"vote-updated": "Stimme aktualisiert",
"you-can-add-a-new-scheduling-date-to-your-poll": "Sie können Ihrer Umfrage ein neues Datum hinzufügen.",
"your-poll-has-been-removed": "Ihre Umfrage wurde gelöscht!",
"and-add-a-new-column-with": "und neue Spalte hinzufügen mit",
"remove-a-column-or-a-line-with": "Zeile oder Spalte entfernen mit",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Benutzer, die mit \"Unter Vorbehalt\" für diese Option abgestimmt haben, haben folgende E-Mail-Adressen:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Benutzer, die mit \"Nein\" für diese Option abgestimmt haben, haben folgende E-Mail-Adressen:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Benutzer, die mit \"Ja\" für diese Option abgestimmt haben, haben folgende E-Mail-Adressen:",
"deletion-date": "Löschdatum:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Wenn Sie an dieser Umfrage teilnehmen möchten, müssen Sie ihren Namen angeben, die Auswahl treffen, die Ihnen am ehesten zusagt und mit dem Speichern-Button am Ende der Zeile bestätigen.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Die Abstimmung wurde vom Administrator gesperrt. Bewertungen und Kommentare wurden eingefroren; es ist nicht mehr möglich teilzunehmen",
"the-poll-has-expired-it-will-soon-be-deleted": "Der Zeitraum für die Umfrage ist überschritten, sie wird bald gelöscht werden.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Ihre Stimme wurde gezählt, aber beachten Sie, dass diese Umfrage die nachträgliche Änderung Ihrer Wertung nur über den nachfolgend genannten, personalisierten Link erlaubt; verwahren Sie ihn an einem sicheren Ort!"
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Δημιουργία ψηφοφορίας",
"define-dates-or-subjects-to-choose-from": "Καθορίστε ημερομηνίες ή θέματα προς ψηφοφορία",
"discuss-and-make-a-decision": "Συζητήστε και λάβετε μια απόφαση",
"do-you-want-to": "Επιθυμείτε",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Το Framadate είναι μία διαδικτυακή υπηρεσία για τον προγραμματισμό συναντήσεων ή για την εύκολη και γρήγορη λήψη αποφάσεων. Δεν απαιτείται εγγραφή.",
"here-is-how-it-works": "Λειτουργεί έτσι:",
"send-the-poll-link-to-your-friends-or-colleagues": "Αποστείλετε τον σύνδεσμο της ψηφοφορίας στους φίλους ή τους συνεργάτες σας",
"what-is-framadate": "Τι είναι το Framadate;",
"view-an-example": "προβολή παραδείγματος;",
"cecill-b-license": "CeCILL-B άδεια χρήσης",
"framadate-is-licensed-under-the": "Το Framadate είναι αδειοδοτημένο υπό την",
"framadate-was-initially-based-on": "Το Framadate αρχικά βασίστηκε στο",
"the-software": "Το λογισμικό",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Αυτό το λογισμικό απαιτεί την χρήση javascript και τα cookies ενεργοποιημένα. Είναι συμβατό με τους ακόλουθους περιηγητές:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "λογισμικό αναπτυγμένο από το Πανεπιστήμιο του Στρασβούργου. Σήμερα, αναπτύσεται από τον όμιλο Framasoft.",
"grow-your-own": "Καλλιεργήστε το δικό σας",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Αν επιθυμείτε να εγκαταστήσετε το λογισμικό για προσωπική χρήση και έτσι να ενισχύσετε την ανεξαρτησία σας, μπορούμε να σας βοηθήσουμε εδώ:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Για να συμμετέχετε στην ανάπτυξη του λογισμικού, να προτείνετε βελτιώσεις ή απλά να κάνετε λήψη, παρακαλούμε επισκεφθείτε",
"the-development-site": "τον ιστότοπο ανάπτυξης",
"Actions": "Ενέργειες",
"Administration": "Διαχείριση",
"Author": "Συγγραφέας",
"back-to-administration": "Επιστροφή στην διαχείριση",
"change-the-poll": "Μεταβολή της ψηφοφορίας",
"Email": "Διεύθυνση ηλεκτρονικού ταχυδρομείου",
"Executed": "Εκτελέστηκε",
"expiry-date": "Ημερομηνία λήξης",
"Fail": "Αποτυχία",
"failed": "Απέτυχε:",
"Format": "Μορφή",
"Installation": "Εγκατάσταση",
"Logs": "Αρχεία καταγραφής",
"Migration": "Μεταφορά",
"Nothing": "Τίποτα",
"pages": "Σελίδες:",
"poll-id": "Αναγνωριστικό Ψηφοφορίας",
"poll-deleted": "Η ψηφοφορία διαγράφηκε",
"Polls": "Ψηφοφορίες",
"Purge": "Εκκαθάριση",
"purge-the-polls": "Εκκαθάριση ψηφοφοριών",
"purged": "Εκκαθαρίστηκαν:",
"see-the-poll": "Προβολή ψηφοφορίας",
"skipped": "Παραλείφθηκαν:",
"Status": "Κατάσταση",
"succeeded": "Επιτυχημένα:",
"Success": "Επιτυχία",
"Summary": "Σύνοψη",
"Title": "Τίτλος",
"Votes": "Ψήφοι",
"Waiting": "Σε αναμονή",
"polls-in-the-database-at-this-time": "ψηφοφορίες στην βάση δεδομένων αυτή τη στιγμή",
"check-again": "Επανέλεγχος",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Για αυξημένη ασφάλεια εξετάστε την ενεργοποίηση της PHP επέκτασης OpenSSL.",
"consider-setting-the-date-timezone-in-php-ini": "Εξετάστε την ρύθμιση του date.timezone στο php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Εξετάστε την ρύθμιση του « session.cookie_httponly = 1 » στο php.ini ή προσθέστε το « php_value session.cookie_httponly 1 » στο .htaccess ώστε τα cookies να μην είναι προσβάστιμα μέσω της Javascript.",
"continue-the-installation": "Συνέχεια εγκατάστασης",
"cookies-are-served-from-http-only": "Τα cookies εξυπηρετούνται μόνο από το HTTP.",
"installation-checking": "Έλεγχος εγκατάστασης",
"openssl-extension-loaded": "Η OpenSSL επέκταση έχει φορτωθεί.",
"php-intl-extension-is-enabled": "Η επέκταση PHP Intl έχει ενεργοποιηθεί.",
"php-version-x-is-enough-needed-at-least-php-x": "Η έκδοση PHP %s επαρκεί (απαιτείται τουλάχιστον PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Ο φάκελος του config file (%s) δεν μπορεί να εγγραφεί και το config file (%s) δεν υπάρχει.",
"the-config-file-directory-x-is-writable": "Ο φάκελος του config file (%s) είναι εγγράψιμος.",
"the-config-file-exists": "Το config έγγραφο υπάρχει.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Ο πρότυπος φάκελος μεταγλώττισης (template compile directory) (%s) δεν υπάρχει στο \"%s\". Δοκιμάστε ξανά την εγκατάσταση.",
"the-template-compile-directory-x-is-not-writable": "Ο πρότυπος φάκελος μεταγλώττισης (template compile directory) (%s) δεν είναι εγγράψιμος.",
"the-template-compile-directory-x-is-writable": "Ο πρότυπος φάκελος μεταγλώττισης (template compile directory) (%s) είναι εγγράψιμος.",
"you-need-to-enable-the-php-intl-extension": "Πρέπει να ενεργοποιήσετε την επέκταση PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Η έκδοση PHP (%s) είναι πολύ παλιά. Αυτή τη εφαρμογή χρειάζεται τουλάχιστον την PHP έκδοση (%s).",
"date-timezone-is-set": "το date.timezone έχει ρυθμιστεί.",
"add-a-comment-to-the-poll": "Προσθέστε ένα σχόλιο στην ψηφοφορία",
"Comment": "Σχόλιο",
"comment-saved": "Το σχόλιο αποθηκεύθηκε",
"Comments": "Σχόλια",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Εισάγετε το όνομα και το σχόλιό σας πριν την υποβολλή της φόρμας",
"remove-comment": "Αφαίρεση σχολίου",
"submit-comment": "Υποβολή σχολίου",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %B %e, %Y",
"b-y": "%B %Y",
"y-m-x": "%Χ-%μ-%η",
"a-e": "%a %e",
"m-x-y-h-m": "%μ/%η/%Χ %Ω:%Λ",
"add-range-dates": "Προσθήκη φάσματος ημερομηνιών",
"end-date": "Τελική ημερομηνία",
"start-date": "Αρχική ημερομηνία",
"Y-m-d": "E-μ-η",
"you-can-select-at-most-4-months": "Μπορείτε να επιλέξετε το μέγιστο 4 μήνες",
"yyyy-mm-dd": "χχχχ-μμ-ηη",
"yyyy-mm-dd-for-humans": "χχχχ-μμ-ηη-για-ανθρώπους",
"edit-link-for-poll-x": "Επεξεργασία συνδέσμου για ψηφοφορία \"%s\"",
"here-is-the-link-for-editing-your-vote": "Σύνδεσμος επεξεργασίας ψηφοφορίας:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Αν δεν θέλετε να απωλέσετε τον εξατομικευμένο σύνδεσμο, μπορούμε να σας τον αποστείλουμε με email.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Παρακαλούμε περιμένετε %d δευτερόλεπτα μέχρι να σας αποστείλουμε το email και έπειτα δοκιμάστε ξανά.",
"REMINDER": "ΥΠΕΝΘΥΜΙΣΗ",
"Send": "Αποστολή",
"the-email-address-is-not-correct": "Η διεύθυνση email δεν είναι σωστή.",
"your-reminder-has-been-successfully-sent": "Η υπενθύμισή σας έχει αποσταλεί!",
"adding-vote-failed": "Η προσθήκη ψήφου απέτυχε",
"cant-create-an-empty-column": "Δεν μπορεί να δημιουργηθεί κενή στήλη.",
"cant-create-the-config-php-file-in-x": "Αδυναμία δημιουργίας του config.php στο '%s'.",
"comment-failed": "Ο σχολιασμός απέτυχε",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Τα cookies είναι απενεργοποιημένα για τον περιηγητή σας. Είναι απαραίτητα για την δημιουργία ψηφοφορίας.",
"enter-a-name": "Εισάγετε όνομα",
"enter-a-name-and-a-comment": "Εισάγετε όνομα και σχόλιο!",
"enter-a-title": "Εισάγετε τίτλο",
"enter-an-email-address": "Εισάγετε email",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Σφάλμα στο όριο των ψήφων: Η τιμή πρέπει να είναι ακέραια μεγαλύτερη από 0",
"error": "Σφάλμα!",
"failed-to-delete-all-comments": "Αποτυχία διαγραφής όλων των σχολίων",
"failed-to-delete-all-votes": "Αποτυχία διαγραφής όλων των ψήφων",
"failed-to-delete-column": "Αποτυχία διαγραφής στήλης",
"failed-to-delete-the-comment": "Αποτυχία διαγραφής σχολίου",
"failed-to-delete-the-poll": "Αποτυχία διαγραφής ψηφοφορίας",
"failed-to-delete-the-vote": "Αποτυχία διαγραφής ψήφου!",
"failed-to-insert-the-comment": "Αποτυχία εισαγωγής σχολίου!",
"failed-to-save-poll": "Αποτυχία αποθήκευσης ψηφοφορίας",
"forbidden": "Απαγορευμένο!",
"GenericErrorPollCreation": "Ώχ όχι! Η ψηφοφορία δεν μπορεί να δημιουργηθεί αυτή τη στιγμή. Λυπούμαστε γι' αυτό. Παρακαλούμε δοκιμάστε ξανά αργότερα.",
"identifier-is-already-used": "Το αναγνωριστιικό έχει χρησιμοποιηθεί ήδη",
"if-you-quit-now-your-changes-will-be-lost": "Αν εγκαταλείψετε τώρα, οι αλλαγές σας θα απολεστούν.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Η JavaScript είναι απενεργοποιημένη στον περιηγητή σας. Απαιτείται για την δημιουργία ψηφοφορίας.",
"missing-values": "Λείπουν τιμές",
"no-polls-found": "Δεν βρέθηκαν ψηφοφορίες",
"password-is-empty": "Ο κωδικός είναι κενός.",
"passwords-do-not-match": "Οι κωδικοί δεν ταιριάζουν.",
"poll-has-been-updated-before-you-vote": "Η ψηφοφορία έχει ενημερωθεί πριν ψηφήσετε",
"something-has-gone-wrong": "Κάτι πήγε στραβά...",
"something-is-wrong-with-the-format": "Κάτι δεν είναι σωστό στην μορφή",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Κάτι είναι λάθος στην μορφή: Τα εξατομικευμένα URL πρέπει να αποτελούνται μόνο από αλφαριθμητικούς χαρακτήρες και παύλες.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Κάτι δεν είναι λάθος στην μορφή: το όνομα δεν πρέπει να έχει κενά στην αρχή ή στο τέλος",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Η διεύθυνση δεν είναι σωστή! Πρέπει να εισάγετε ένα έγκυρο email (της μορφής r.stallman@outlock.com) ώστε να λάβετε τον σύνδεσμο της ψηφοφορίας σας.",
"the-column-already-exists": "Η στήλη υπάρχει ήδη",
"the-name-is-invalid": "Το όνομα δεν είναι έγκυρο.",
"the-name-youve-chosen-already-exists-in-this-poll": "Το όνομα που έχετε επιλέξει υπάρχει ήδη στην συγκεκριμη ψηφοφορία!",
"there-is-a-problem-with-your-choices": "Υπάρχει ένα πρόβλημα με τις επιλογές σας",
"this-identifier-is-not-allowed": "Αυτό το αναγνωριστικό δεν επιτρέπεται",
"this-poll-doesnt-exist": "Αυτή η ψηφοφορία δεν υπάρχει!",
"unable-to-connect-to-database": "Αποτυχία σύνδεσης στην βάση δεδομένων",
"update-vote-failed": "Η ενημέρωση της ψήφου απέτυχε",
"you-already-voted": "Έχετε ψηφήσει ήδη",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Δεν μπορείτε να δημιουργήσετε μια ψηφοφορία με κρυφά αποτελέσματα με την ακόλουθη επιλογή: ",
"you-cant-select-more-than-x-dates": "Δεν μπορείτε να επιλέξετε περισσότερες από %d ημερομηνίες",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Δεν έχετε συμπληρώσει το πρώτο τμήμα της δημιουργίας ψηφοφορίας, ή έχει λήξει η συνεδρία σας.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Η ψήφος σας δεν έχει καταμετρηθεί, διότι κάποιος άλλος ψήφισε στο μεταξύ προκαλώντας σύκγρουση με την επιλογή σας και με τους όρους της ψηφοφορίας. Παρακαλώ δοκιμάστε ξανά.",
"Address": "Διεύθυνση",
"created-polls": "Δημιουργηθείσες ψηφοφορίες",
"have-a-good-day": "Καλή σας μέρα!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Αυτή είναι μια λίστα των ψηφοφοριών που διαχειρίζεστε στο %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Εάν δεν προκαλέσατε εσείς αυτήν την ενέργεια και εάν νομίζετε ότι έχει γίνει κατάχρηση αυτής της υπηρεσίας, παρακαλώ ενημερώστε τον διαχειριστή στο %s.",
"its-address": "Η διεύθυνσή του",
"last-access-date": "Τελευταία πρόσβαση",
"list-of-your-polls": "Η λίστα των ψηφοφοριών σας",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "ΥΓ: αυτό το email έχει σταλεί γιατί εσείς - ή κάποιος άλλος - ζήτησε να λαμβάνει τις ψηφοφορίες που δημιουργήθηκαν με το email σας.",
"polls-saved-inside-this-browser": "Ψηφοφορίες που αποθηκεύθηκαν σε αυτόν τον περιηγητή",
"polls-sent": "Αποσταλείσες ψηφοφορίες",
"remove-all-my-polls-from-this-browsers-index": "Αφαιρέστε όλες τις ψηφοφορίες μου από τον κατάλογο αυτού του περιηγητή",
"remove-poll-from-index": "Αφαίρεση ψηφοφορίας από τον κατάλογο",
"send-me-my-polls": "Αποστείλετέ μου τις ψηφοφορίες μου",
"send-my-polls-by-email": "Αποστολή των ψηφοφοριών μου με email",
"the-date-you-created-or-last-accessed-the-poll": "Η ημερομηνία δημιουργίας ή τελευταίας πρόσβασης στην ψηφοφορία",
"the-title-of-the-poll": "Ο τίτλος της ψηφοφορίας",
"there-are-no-polls-saved-inside-your-browser-yet": "Δεν υπάρχουν αποθηκευμένες ψηφοφορίες ακόμα στον περιηγητή σας",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Για να διαγράψετε αυτά τα δεδομένα επιλέξτε τον κάδο στην αντίστοιχη γραμμή ή επιλέξτε το «Διαγράψτε τον κατάλογο των ψηφοφοριών μου». Αυτή η ενέργεια δεν θα διαγράψει τις ψηφοφορίες σας.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Για την διευκόλυνση της αναζήτησης προηγούμενων ψηφοφοριών, αποθηκεύουμε στον περιηγητή σας κάθε ψηφοφορία που δημιουργείτε ή έχετε προσπελάσει. Αυτά τα δεδομένα αποθηκεύονται μόνο εντός του συγκεκριμένου περιηγητή. Θα αποθηκευτούν τα ακόλουθα δεδομένα:",
"visited-polls": "Ψηφοφορίες που επισκεφθήκατε",
"in-the-format-name-mail-com": "(στην μορφή name@mail.com)",
"Add": "Προσθήκη",
"Back": "Επιστροφή",
"back-to-the-homepage-of": "Επιστροφή στην αρχική σελίδα",
"Cancel": "Ακύρωση",
"Choice": "Επιλογή",
"Classic": "Κλασική",
"Close": "Κλείσιμο",
"create-your-own-polls": "Δημιουργήστε τις δικές σας ψηφοφορίες",
"creation-date": "Ημερομηνία δημιουργίας:",
"Date": "Ημερομηνία",
"Day": "Ημέρα",
"Description": "Περιγραφή",
"Edit": "Επεξεργασία",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Το Framadate είναι μία διαδικτυακή υπηρεσία για τον προγραμματισμό συναντήσεων ή για την λήψη γρήγορων αποφάσεων.",
"Home": "Αρχική",
"Information": "Πληροφορίες",
"legend": "Θρυλική:",
"Link": "Σύνδεσμος",
"Markdown": "Markdown",
"Next": "Επόμενο",
"No": "Όχι",
"page-generated-in": "Η σελίδα δημιουργήθηκε σε",
"Poll": "Ψηφοφορία",
"Remove": "Αφαίρεση",
"Save": "Αποθήκευση",
"Search": "Αναζήτηση",
"Time": "Ώρα",
"under-reserve": "Υπό δέσμευση",
"Validate": "Επικύρωση",
"Yes": "Ναι",
"your-email-address": "Η διεύθυνση email σας",
"your-name": "Το όνομά σας",
"days": "ημέρες",
"for": "για",
"months": "μήνες",
"seconds": "δευτερόλεπτα",
"vote": "ψήφος",
"votes": "ψήφοι",
"with": "με",
"make-a-standard-poll": "Δημιουργία τυπικής ψηφοφορίας",
"schedule-an-event": "Προγραματίστε μια δραστηριότητα",
"where-are-my-polls": "Που βρίσκονται οι ψηφοφορίες μου;",
"administrator-mail-address": "Διεύθυνση email του διαχειριστή",
"application-name": "Όνομα εφαρμογής",
"clean-url": "Καθαρισμός URL",
"database-driver": "Οδηγός βάσης δεδομένων",
"database-hostname": "Hostname βάσης δεδομένων",
"database-name": "Όνομα βάσης δεδομένων",
"database-port": "Μεταφορά βάσης δεδομένων",
"default-language": "Προκαθορισμένη γλώσσα",
"General": "Γενικά",
"Install": "Εγκατάσταση",
"migration-table": "Πίνακας μετανάστευσης",
"Password": "Κωδικός",
"Prefix": "Πρόθεμα",
"respond-to-mail-address": "Email απάντησης",
"User": "Χρήστης",
"change-language": "Αλλαγή γλώσσας",
"select-language": "Επιλογή γλώσσας",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"Ο δρόμος είναι μακρύς, αλλά η διαδρομή καθαρή…\"<br/>Η Framasoft συντηρείται μόνο από τις δωρεές σας.<br/>Ευχαριστούμε για την υποστήριξή σας https://soutenir.framasoft.org",
"message-for-the-author": "Μήνυμα για τον συγγραφέα",
"notification-of-poll-x": "Ειδοποίηση ψηφοφορίας: %s",
"participant-link": "Σύνδεσμος συμμετέχοντα",
"poll-participation-x": "Συμμετοχή στην ψηφοφορία: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Κάποιος μόλις άλλαξε την ψηφοφορία σας στον ακόλουθε σύνδεσμο <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Κάποιος μόλις διέγραψε την ψηφοφορία σας \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Ευχαριστούμε για την συμμετοχή σας στην ψηφοφορία του ακόλουθου συνδέσμου",
"thank-you-for-your-trust": "Ευχαριστούμε για την εμπιστοσύνη σας.",
"this-is-the-message-to-forward-to-the-poll-participants": "Αυτό είναι το μήνυμα που θα προωθηθεί στους συμμετέχοντες στην ψηφοφορία.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Αυτό το μήνυμα ΔΕΝ πρέπει να αποσταλεί στους συμμετέχοντες στην ψηφοφορία. Θα πρέπει να κρατηθεί ιδιωτικό. <br/><br/>Μπορείτε να μεταβάλετε την ψηφοφορία σας στον ακόλουθο σύνδεσμο",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "προσέθεσε μία ψήφο.<br/>Μπορείτε να επισκεφθείτε την ψηφοφορία σας στον σύνδεσμο",
"has-just-created-a-poll-called": "μόλις δημιούργησε μία ψηφοφορία με τίτλο",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "ενημέρωσε μία ψήφο.<br/>Μπορείτε να επισκεφθείτε την ψηφοφορία σας στον σύνδεσμο",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "έγραψε ένα σχόλιο.<br/>Μπορείτε να επισκεφθείτε την ψηφοφορία σας στον σύνδεσμο",
"thank-you-for-your-understanding": "Ευχαριστούμε για την κατανόηση.",
"the-application": "Η εφαρμογή",
"is-currently-under-maintenance": "είναι προσωρινά υπό συντήρηση.",
"submit-access": "Υποβολή πρόσβασης",
"wrong-password": "Λάθος κωδικός",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Πρέπει να παρέχεται έναν κωδικό για να συμμετέχετε στην ψηφοφορία.",
"you-have-to-provide-a-password-to-access-the-poll": "Πρέπει να παρέχετε έναν κωδικό για να έχετε πρόσβαση στην ψηφοφορία.",
"x-option": "%s επιλογή",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Οποιοσδήποτε θα μπορεί να δει το email σας αφού ψηφήσετε",
"best-choice": "Βέλτιστη επιλογή",
"best-choices": "Βέλτιστες επιλογές",
"Chart": "Διάγραμμα",
"display-the-chart-of-the-results": "Προβολή διαγράμματος αποτελεσμάτων",
"edit-line-x": "Επεξεργασία γραμμής: %s",
"link-to-edit-this-particular-line": "Σύνδεσμος για επεξεργασία της συγκεκριμένς γραμμής",
"remove-line": "Αφαίρεση γραμμής:",
"save-choices": "Αποθήκευση επιλογών",
"scroll-to-the-left": "Κύλιση προς τα αριστερά",
"scroll-to-the-right": "Κύλιση προς τα δεξιά",
"the-current-best-choice-is": "Η τρέχουσα καλύτερη επιλογή είναι:",
"the-current-best-choices-are": "Οι τρέχουσες καλύτερες επιλογές είναι:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Ο σύνδεσμος για την επεξεργασία της συγκεκριμένης γραμμής έχει αντιγραφεί στο πρόχειρο!",
"Total": "Συνολικά",
"vote-no-for": "Ψηφίστε \"όχι\" για",
"vote-yes-for": "Ψηφίστε \"ναι\" για",
"votes-under-reserve-for": "Ψήφοι υπό δέσμευση από",
"polled-user": "ερωτημένος χρήστης",
"polled-users": "ερωτηθέντες χρήστες",
"admin-link-for-the-poll": "Σύνδεσμος διαχειριστή για την ψηφοφορία",
"cancel-the-description-edit": "Απόρριψη επεξεργασίας περιγραφής",
"cancel-the-email-address-edit": "Απόρριψη επεξεργασίας διεύθυνση email",
"cancel-the-expiration-date-edit": "Απόρριψη επεξεργασίας ημερομηνίας λήξης",
"cancel-the-name-edit": "Απόρριψη επεξεργασίας ονόματος",
"cancel-the-rules-edit": "Απόρριψη επεξεργασίας κανόνων",
"cancel-the-title-edit": "Απόρριψη επεξεργασίας τίτλου",
"creator-of-the-poll": "Δημιουργός ψηφοφορίας",
"edit-name": "Επεξεργασία ονόματος",
"edit-the-description": "Επεξεργασία περιγραφής",
"edit-the-email-address": "Επεξεργασία διεύθυνσης email",
"edit-the-expiry-date": "Επεξεργασία ημερομηνίας λήξης",
"edit-the-poll-rules": "Επεξεργασία κανόνων ψηφοφορίας",
"edit-title": "Επεξεργασία τίτλου",
"export-to-csv": "Εξαγωγή σε CSV",
"no-password": "Κενός κωδικός",
"only-votes-are-protected": "Μόνο οι ψήφοι είναι προστατευμένες",
"password-protected": "Ο κωδικός προστατεύεται",
"poll-rules": "Κανόνες ψηφοφορίας",
"Print": "Εκτύπωση",
"public-link-to-the-poll": "Δημόσιος σύνδεσμος στην ψηφοφορία",
"remove-all-comments": "Αφαίρεση όλων των σχολίων",
"remove-all-votes": "Αφαίρεση όλων των ψήφων",
"remove-password": "Αφαίρεση κωδικού",
"remove-the-poll": "Αφαίρεση ψηφοφορίας",
"results-are-hidden": "Τα αποτελέσματα είναι κρυφά",
"results-are-visible": "Τα αποτελέσματα είναι ορατά",
"rich-editor": "Εμπλουτισμένος επεξεργαστής",
"save-the-description": "Αποθήκευση περιγραφής",
"save-the-email-address": "Αποθήκευση διεύθυνσης email",
"save-the-new-expiration-date": "Αποθήκευση της νέας ημερομηνίας λήξης",
"save-the-new-name": "Αποθήκευση νέου ονόματος",
"save-the-new-rules": "Αποθήκευση νέων κανόνων",
"save-the-new-title": "Αποθήκευση νέου τίτλου",
"simple-editor": "Απλώς επεξεργαστής",
"title-of-the-poll": "Τίτλος ψηφοφορίας",
"voters-email-addresses-are-collected": "Οι διευθύνσεις email των ψηφισάντων έχουν συλλεχθεί",
"voters-email-addresses-are-collected-and-required": "Οι διευθύνσεις email των ψηφισάντων έχουν συλλεχθεί και απαιτούνται",
"voters-email-addresses-are-collected-required-and-verified": "Οι διευθύνσεις email των ψηφισάντων έχουν συλλεχθεί, απαιτούνται και έχουν επαληθευθεί",
"voters-email-addresses-are-not-collected": "Οι διευθύνσεις email των ψηφισάντων δεν έχουν συλλεχθεί",
"votes-and-comments-are-locked": "Η δυνατότητα ψήφου και σχολιασμού είναι κλειδωμένη",
"votes-protected-by-password": "Ψήφοι προστατευμένοι με κωδικό",
"all-voters-can-modify-any-vote": "Όλοι οι ψηφοφόροι μπορούν να επεξεργαστούν οποιαδήποτε ψήφο",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Ορίζοντας ένα αναγνωριστικό που διευκολύνει την πρόσβαση στην ψηφοφορία σε ανεπιθύμητα άτομα. Προτείνεται η προστασία με κωδικό.",
"collect-voters-email-addresses": "Συλλογή διευθύνσεων email ψηφοφόρων",
"Confirmation": "Επιβεβαίωση",
"customize-the-url": "Προσαρμογή διεύθυνσης URL",
"email-addresses-are-collected-but-not-required": "Οι διευθύνσεις email συλλέγονται αλλά δεν απαιτούνται",
"email-addresses-are-not-collected": "Οι διευθύνσεις email δεν συλλέγονται",
"email-addresses-are-required": "Οι διευθύνσεις email απαιτούνται",
"email-addresses-are-required-and-verified": "Οι διευθύνσεις email απαιτούνται και επαληθεύονται",
"go-to-step-2": "Μετάβαση στο βήμα 2",
"limit-the-amount-of-voters-per-option": "Περιορισμός του αριθμού των ψηφοφόρων ανά επιλογή",
"more-informations-here": "Περισσότερες πληροφορίες εδώ:",
"only-the-poll-maker-can-see-the-poll-results": "Μόνο ο δημιουργός της ψηφοφορίας μπορεί να δει τα αποτελέσματα της ψηφοφορίας",
"optional-parameters": "Προαιρετικές παράμετροι",
"Permissions": "Άδειες",
"poll-creation-1-of-3": "Δημιουργία ψηφοφορίας (1 από 3)",
"poll-link": "Σύνδεσμος ψηφοφορίας",
"poll-title": "Τίτλος ψηφοφορίας",
"receive-an-email-for-each-new-comment": "Λήψη email για κάθε νέο σχόλιο",
"receive-an-email-for-each-new-vote": "Λήψη email για κάθε νέα ψήφο",
"required-fields-cannot-be-left-blank": "Τα απαιτούμενα πεδία δεν μπορούν να είναι κενά.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Το αναγνωριστικό μπορεί να περιέχει γράμματα, αριθμούς και παύλες \"-\".",
"the-results-are-publicly-visible": "Τα αποτελέσματα είναι δημοσίως ορατά",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Για να έχει καλύτερη εμφάνιση η περιγραφή, μπορεί να χρησιμοποιηθεί η μορφή Markdown.",
"use-a-password-to-restrict-access": "Χρησιμοποίηση κωδικού για τον περιορισμό της πρόσβασης",
"value-max": "Μέγιστη τιμή",
"voters-can-modify-their-own-vote-themselves": "Οι ψηφοφόροι μπορούν να αλλάξουν οι ίδιοι την δική τους ψήφο",
"votes-cannot-be-modified": "Οι ψήφοι δεν μπορούν να αλλαχθούν",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Προειδοποίηση: Οποιοσδήποτε μπορεί να δει την διεύθυνση email όσων ψήφισαν από τη στιγμή που οποιοσδήποτε ψηφοφόρος μπορεί να μεταβάλει οποιαδήποτε ψήφο. Θα έπρεπε να περιοριστούν τα δικαιώματα πρόσβασης.",
"you-are-in-the-poll-creation-section": "Βρίσκεστε στο τμήμα δημιουργίας ψηφοφοριών.",
"you-can-enable-or-disable-the-editor-at-will": "Μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε τον επεξεργαστή κειμένου κατά βούληση.",
"votes-per-option": "ψήφοι ανά επιλογή",
"go-to-step-3": "Μετάβαση στο βήμα 3",
"return-to-step-1": "Επιστροφή στο βήμα 1",
"add-a-choice": "Προσθήκη επιλογής",
"add-a-link-or-an-image": "Προσθήκη συνδέσμου ή εικόνας",
"alternative-text": "Εναλλακτικό κείμενο",
"links-or-images-can-be-included-using": "Σύνδεσμοι ή εικόνες μπορούν να συμπεριληφθούν χρησιμοποιόντας",
"markdown-syntax": "σύνταξη Markdown",
"poll-options-2-of-3": "Επιλογές ψηφοφορίας (2 από 3)",
"remove-a-choice": "Αφαίρεση επιλογής",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Αυτά τα πεδία είναι προαιρετικά. Μπορείτε να προσθέσετε έναν σύνδεσμο, μία εικόνα ή και τα δύο.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Για την δημιουργία μιας ψηφοφορίας πρέπει να παρέχετε τουλάχιστον δύο διαφορετικές επιλογές.",
"url-of-the-image": "το URL της εικόνας",
"you-can-add-or-remove-choices-with-the-buttons": "Μπορείτε να προσθέσετε ή να αφαιρέσετε επιλογές με τα κουμπιά",
"add-a-day": "Προσθήκη ημέρας",
"add-a-time-slot": "Προσθήκη πεδίου ώρας",
"choose-dates-for-your-poll": "Επιλογή ημερομηνιών για την ψηφοφορία σας",
"copy-times-from-the-first-day": "Αντιγραφή ωρών από την πρώτη ημέρα",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Για κάθε επιλεγμένη ημέρα, μπορείτε να προτείνετε ελέυθερα ώρες συνάντησης (π.χ. \"8h\", \"8:30\", \"Ω/8:00\", \"απόγευμα\", κτλ.)",
"poll-dates-2-of-3": "Ημερομηνίες ψηφοφορίας (2 απο 3)",
"remove-a-day": "Αφαίρεση κάποιας ημέρας",
"remove-a-time-slot": "Αφαίρεση ενός πεδίου ώρας",
"remove-all-days": "Αφαίρεση όλων των ημερών",
"remove-all-times": "Αφαίρεση όλων των ωρών",
"remove-this-day": "Αφαίρεση αυτής της ημέρας",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Για τον προγραμματισμό μιας δραστηριότητας πρέπει να παρέχετε τουλάχιστον δύο επιλογές (π.χ, δύο πεδία ώρας σε μία ημέρα, ή δύο ημέρες).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Μπορείτε να προσθέσετε ή να αφαιρέσετε ημέρες και ώρες με τα κουμπιά",
"back-to-step-2": "Επιστροφή στο βήμα 2",
"confirm-the-creation-of-your-poll": "Επιβεβαίωση της δημιουργίας της ψηφοφορίας",
"create-the-poll": "Δημιουργία ψηφοφορίας",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Ημερομηνία λήξης:",
"list-of-options": "Λίστα επιλογών",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Από την στιγμή της επιβεβαίωσης δημιουργίας της ψηφοφορίας, θα ανακατευθυνθείτε αυτόματα στην σελίδα διαχείρισης της ψηφοφορίας.",
"removal-date-and-confirmation-3-of-3": "Ημερομηνία αφαίρεσης και επιβεβαίωση (3 από 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Έπειτα θα λάβετε δύο μηνύματα email: το ένα θα περιέχει τον σύνδεσμο της ψηφοφορίας για αποστολή στους συμμετέχοντες, το άλλο θα περιέχει τον σύνδεσμο για την διαχείριση της ψηφοφορίας.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Μπορείτε να θέσετε μία συγκεκριμένη ημερομηνία λήξης για την ψηφοφορία.",
"your-poll-will-automatically-be-archived": "Η ψηφοφορία σας θα αρχειοθετηθεί αυτόματα",
"your-poll-will-be-automatically-archived-in-x-days": "Η ψηφοφορία σας θα αρχειοθετηθεί αυτόματα σε %d ημέρες.",
"after-the-last-date-of-your-poll": "μετά την τελική ημερομηνία της ψηφοφορίας σας.",
"version-x": "Έκδοση %s",
"add-a-column": "Προσθήκη στήλης",
"adding-a-column": "Προστείθεται στήλη",
"all-comments-deleted": "Όλα τα σχόλια διαγράφηκαν",
"all-votes-deleted": "Όλες οι ψήφοι διαγράφηκαν",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Ως διαχειριστής της ψηφοφορίας, μπορείτε να αλλάξετε όλες τις γραμμές αυτής της ψηφοφορίας με αυτό το κουμπί",
"back-to-the-poll": "Επιστροφή στην ψηφοφορία",
"choice-added": "Η επιλογή προστέθηκε",
"collect-the-emails-of-the-polled-users-for-the-choice": "Συλλογή των email των ψηφισάντων χρηστών για την επιλογή",
"column-deleted": "Η στήλη διαγράφηκε",
"comment-deleted": "Το σχόλιο διαγράφηκε",
"confirm-removal-of-all-comments": "Επιβεβαίωση αφαίρεσης όλων των σχολίων",
"confirm-removal-of-all-votes": "Επιβεβαίωση αφαίρεσης όλων των ψήφων",
"confirm-removal-of-the-column": "Επιβεβαίωση αφαίρεσης της στήλης.",
"confirm-removal-of-your-poll": "Επιβεβαίωση αφαίρεσης της ψηφοφορίας",
"delete-poll": "Διαγραφή ψηφοφορίας",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Τελος, μπορείτε να αλλάξετε τις ιδιότητες αυτής της ψηφοφορίας όπως τον τίτλο, τα σχόλια ή την διεύθυνση email σας.",
"keep-comments": "Διατήρηση σχολίων",
"keep-the-comments": "Διατήρηση των σχολίων",
"keep-the-poll": "Διατήρηση της ψηφοφορίας",
"keep-the-votes": "Διατήρηση των ψήφων",
"keep-this-poll": "Διατήρηση αυτής της ψηφοφορίας",
"keep-votes": "Διατήρηση ψήφων",
"poll-fully-deleted": "Η ψηφοφορία διαγράφηκε ολοσχερώς",
"poll-saved": "Η ψηφοφορία αποθηκεύθηκε",
"remove-column": "Διαγραφή στήλης",
"remove-the-comments": "Αφαίρεση των σχολίων",
"remove-the-votes": "Αφαίρεση των ψήφων",
"the-poll-was-created": "Η ψηφοφορία δημιουργήθηκε.",
"vote-added": "Προστέθηκε ψήφος",
"vote-deleted": "Διαγράφηκε ψήφος",
"vote-updated": "Ενημερώθηκε ψήφος",
"you-can-add-a-new-scheduling-date-to-your-poll": "Μπορείτε να προσθέσετε νέα ημερομηνία προγραμματισμού για την ψηφοφορία σας.",
"your-poll-has-been-removed": "Η ψηφοφορία σας έχει αφαιρεθεί!",
"and-add-a-new-column-with": "και προσθέστε νέα στήλη με",
"remove-a-column-or-a-line-with": "αφαίρεση στήλης ή γραμμής με",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Οι χρήστες που ψήφησαν \"Εάν είναι αναγκαίο\" για αυτήν την επιλογή έχουν αφήσει αυτές τις διευθύνσεις email:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Οι χρήστες που ψήφησαν \"Όχι\" για αυτήν την επιλογή έχουν αφήσει αυτές τις διευθύνσεις email:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Οι χρήστες που ψήφησαν \"Ναι\" για αυτήν την επιλογή έχουν αφήσει αυτές τις διευθύνσεις email:",
"deletion-date": "Ημερομηνία διαγραφής:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Αν θέλετε να συμμετέχετε σε αυτήν την ψηφοφορία, πρέπει να συμπληρώσετε το όνομά σας, να κάνετε την επιλογή σας, και να την υποβάλλετε επιλέγοντας το κουμπί αποθήκευσης στο τέλος της γραμμής.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Ο διαχειριστής έχει κλειδώσει αυτήν την ψηφοφορία. Τα σχόλια και η δυνατότητα ψήφου έχουν ανασταλεί, δεν είναι πλέον εφικτή η συμμετοχή",
"the-poll-has-expired-it-will-soon-be-deleted": "Η ψηφοφορία έχει λήξει, σύντομα θα διαγραφεί.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Η ψήφος σας έχει αποθηκευθεί, σημειώστε όμως ότι θα πρέπει να κρατήσετε αυτόν τον προσωπικό σύνδεσμο για να μπορέσετε να επεξεργαστείτε την ψήφο σας."
}

View File

@ -0,0 +1,428 @@
{
"create-a-poll": "Create a poll",
"define-dates-or-subjects-to-choose-from": "Define dates or subjects to choose from",
"discuss-and-make-a-decision": "Discuss and make a decision",
"do-you-want-to": "Do you want to",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate is an online service for planning an appointment or making a decision quickly and easily. No registration is required.",
"here-is-how-it-works": "Here is how it works:",
"send-the-poll-link-to-your-friends-or-colleagues": "Send the poll link to your friends or colleagues",
"what-is-framadate": "What is Framadate?",
"view-an-example": "view an example?",
"cecill-b-license": "CeCILL-B license",
"framadate-is-licensed-under-the": "Framadate is licensed under the",
"framadate-was-initially-based-on": "Framadate was initially based on",
"the-software": "The software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "This software needs javascript and cookies enabled. It is compatible with the following web browsers:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "software developed by the University of Strasbourg. These days, it is developed by the Framasoft association.",
"grow-your-own": "Grow your own",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "If you want to install the software for your own use and thus increase your independence, we can help you at:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "To participate in the software development, suggest improvements or simply download it, please visit",
"the-development-site": "the development site",
"Actions": "Actions",
"Administration": "Administration",
"Author": "Author",
"back-to-administration": "Back to administration",
"change-the-poll": "Change the poll",
"Email": "Email",
"Executed": "Executed",
"expiry-date": "Expiry date",
"Fail": "Fail",
"failed": "Failed:",
"Format": "Format",
"Installation": "Installation",
"Logs": "Logs",
"Migration": "Migration",
"Nothing": "Nothing",
"pages": "Pages:",
"poll-id": "Poll ID",
"poll-deleted": "Poll deleted",
"Polls": "Polls",
"Purge": "Purge",
"purge-the-polls": "Purge the polls",
"purged": "Purged:",
"see-the-poll": "See the poll",
"skipped": "Skipped:",
"Status": "Status",
"succeeded": "Succeeded:",
"Success": "Success",
"Summary": "Summary",
"Title": "Title",
"Votes": "Votes",
"Waiting": "Waiting",
"polls-in-the-database-at-this-time": "polls in the database at this time",
"check-again": "Check again",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Consider enabling the PHP extension OpenSSL for increased security.",
"consider-setting-the-date-timezone-in-php-ini": "Consider setting the date.timezone in php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Consider setting « session.cookie_httponly = 1 » inside your php.ini or add « php_value session.cookie_httponly 1 » to your .htaccess so that cookies can't be accessed through Javascript.",
"continue-the-installation": "Continue the installation",
"cookies-are-served-from-http-only": "Cookies are served from HTTP only.",
"installation-checking": "Installation checking",
"openssl-extension-loaded": "OpenSSL extension loaded.",
"php-intl-extension-is-enabled": "PHP Intl extension is enabled.",
"php-version-x-is-enough-needed-at-least-php-x": "PHP version %s is enough (needed at least PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "The config file directory (%s) is not writable and the config file (%s) does not exists.",
"the-config-file-directory-x-is-writable": "The config file directory (%s) is writable.",
"the-config-file-exists": "The config file exists.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "The template compile directory (%s) doesn't exist in \"%s\". Retry the installation process.",
"the-template-compile-directory-x-is-not-writable": "The template compile directory (%s) is not writable.",
"the-template-compile-directory-x-is-writable": "The template compile directory (%s) is writable.",
"you-need-to-enable-the-php-intl-extension": "You need to enable the PHP Intl extension.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Your PHP version (%s) is too old. This application needs at least PHP %s.",
"date-timezone-is-set": "date.timezone is set.",
"add-a-comment-to-the-poll": "Add a comment to the poll",
"Comment": "Comment",
"comment-saved": "Comment saved",
"Comments": "Comments",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Enter your name and comment prior to submitting the form",
"remove-comment": "Remove comment",
"submit-comment": "Submit comment",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %B %e, %Y",
"b-y": "%B %Y",
"y-m-x": "%Y-%m-%d",
"a-e": "%a %e",
"m-x-y-h-m": "%m/%d/%Y %H:%M",
"add-range-dates": "Add range dates",
"end-date": "End date",
"start-date": "Start date",
"Y-m-d": "Y-m-d",
"you-can-select-at-most-4-months": "You can select at most 4 months",
"yyyy-mm-dd": "yyyy-mm-dd",
"yyyy-mm-dd-for-humans": "year-month-day",
"edit-link-for-poll-x": "Edit link for poll \"%s\"",
"here-is-the-link-for-editing-your-vote": "Here is the link for editing your vote:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "If you don't want to lose your personalized link, we can send it to you by email.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Please wait %d seconds before we can send an email to you then try again.",
"REMINDER": "REMINDER",
"Send": "Send",
"the-email-address-is-not-correct": "The email address is not correct.",
"your-reminder-has-been-successfully-sent": "Your reminder has been successfully sent!",
"adding-vote-failed": "Adding vote failed",
"cant-create-an-empty-column": "Can't create an empty column.",
"cant-create-the-config-php-file-in-x": "Can't create the config.php file in '%s'.",
"comment-failed": "Comment failed",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Cookies are disabled on your browser. They are required to be able to create a poll.",
"enter-a-name": "Enter a name",
"enter-a-name-and-a-comment": "Enter a name and a comment!",
"enter-a-title": "Enter a title",
"enter-an-email-address": "Enter an email address",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Error on amount of votes limitation: Value must be an integer greater than 0",
"error": "Error!",
"failed-to-delete-all-comments": "Failed to delete all comments",
"failed-to-delete-all-votes": "Failed to delete all votes",
"failed-to-delete-column": "Failed to delete column",
"failed-to-delete-the-comment": "Failed to delete the comment",
"failed-to-delete-the-poll": "Failed to delete the poll",
"failed-to-delete-the-vote": "Failed to delete the vote!",
"failed-to-insert-the-comment": "Failed to insert the comment!",
"failed-to-save-poll": "Failed to save poll",
"forbidden": "Forbidden!",
"GenericErrorPollCreation": "Oh no! Your poll could not be created at the moment. Sorry about that. Please try again later.",
"identifier-is-already-used": "Identifier is already used",
"if-you-quit-now-your-changes-will-be-lost": "If you quit now, your changes will be lost.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript is disabled on your browser. It is required to create a poll.",
"missing-values": "Missing values",
"no-polls-found": "No polls found",
"password-is-empty": "Password is empty.",
"passwords-do-not-match": "Passwords do not match.",
"poll-has-been-updated-before-you-vote": "Poll has been updated before you vote",
"something-has-gone-wrong": "Something has gone wrong...",
"something-is-wrong-with-the-format": "Something is wrong with the format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Something is wrong with the format: Customized URLs should only consist of alphanumeric characters and hyphens.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Something is wrong with the format: name shouldn't have any spaces before or after",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "The address is not correct! You should enter a valid email address (like r.stallman@outlock.com) in order to receive the link to your poll.",
"the-column-already-exists": "The column already exists",
"the-name-is-invalid": "The name is invalid.",
"the-name-youve-chosen-already-exists-in-this-poll": "The name you've chosen already exists in this poll!",
"there-is-a-problem-with-your-choices": "There is a problem with your choices",
"this-identifier-is-not-allowed": "This identifier is not allowed",
"this-poll-doesnt-exist": "This poll doesn't exist!",
"unable-to-connect-to-database": "Unable to connect to database",
"update-vote-failed": "Update vote failed",
"you-already-voted": "You already voted",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "You can't create a poll with hidden results with the following option: ",
"you-cant-select-more-than-x-dates": "You can't select more than %d dates",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "You haven't filled the first section of the poll creation, or your session has expired.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry.",
"Address": "Address",
"created-polls": "Created polls",
"have-a-good-day": "Have a good day!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Here is the list of the polls that you manage on %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "If you weren't the source of this action and if you think this is an abuse of the service, please notify the administrator at %s.",
"its-address": "Its address",
"last-access-date": "Last access date",
"list-of-your-polls": "List of your polls",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: this email has been sent because you or someone else asked to get back the polls created with your email address.",
"polls-saved-inside-this-browser": "Polls saved inside this browser",
"polls-sent": "Polls sent",
"remove-all-my-polls-from-this-browsers-index": "Remove all my polls from this browser's index",
"remove-poll-from-index": "Remove poll from index",
"send-me-my-polls": "Send me my polls",
"send-my-polls-by-email": "Send my polls by email",
"the-date-you-created-or-last-accessed-the-poll": "The date you created or last accessed the poll",
"the-title-of-the-poll": "The title of the poll",
"there-are-no-polls-saved-inside-your-browser-yet": "There are no polls saved inside your browser yet",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "To delete this data click the trashcan on the according line or click the « delete my polls index » option. This won't delete your polls.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "To help you find your previous polls, we save each poll you create or access inside your browser. This data is saved inside this browser only. The following data will be saved:",
"visited-polls": "Visited polls",
"in-the-format-name-mail-com": "(in the format name@mail.com)",
"Add": "Add",
"Back": "Back",
"back-to-the-homepage-of": "Back to the homepage of",
"Cancel": "Cancel",
"Choice": "Choice",
"Classic": "Classic",
"Close": "Close",
"create-your-own-polls": "Create your own polls",
"creation-date": "Creation date:",
"Date": "Date",
"Day": "Day",
"Description": "Description",
"Edit": "Edit",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate is an online service for planning an appointment or making a decision quickly and easily.",
"Home": "Home",
"Information": "Information",
"legend": "Legend:",
"Link": "Link",
"Markdown": "Markdown",
"Next": "Next",
"No": "No",
"page-generated-in": "Page generated in",
"Poll": "Poll",
"Remove": "Remove",
"Save": "Save",
"Search": "Search",
"Time": "Time",
"under-reserve": "Under reserve",
"Unknown": "Unknown",
"Validate": "Validate",
"Yes": "Yes",
"your-email-address": "Your email address",
"your-name": "Your name",
"days": "days",
"for": "for",
"months": "months",
"seconds": "seconds",
"vote": "vote",
"votes": "votes",
"with": "with",
"make-a-standard-poll": "Make a standard poll",
"schedule-an-event": "Schedule an event",
"where-are-my-polls": "Where are my polls?",
"administrator-mail-address": "Administrator mail address",
"application-name": "Application name",
"clean-url": "Clean URL",
"database-driver": "Database driver",
"database-hostname": "Database hostname",
"database-name": "Database name",
"database-port": "Database port",
"default-language": "Default language",
"General": "General",
"Install": "Install",
"migration-table": "Migration table",
"Password": "Password",
"Prefix": "Prefix",
"respond-to-mail-address": "Respond-to mail address",
"User": "User",
"change-language": "Change language",
"select-language": "Select language",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"The road is long, but the way is clear…\"<br/>Framasoft lives only by your donations.<br/>Thank you in advance for your support https://soutenir.framasoft.org",
"message-for-the-author": "Message for the author",
"notification-of-poll-x": "Notification of poll: %s",
"participant-link": "Participant link",
"poll-participation-x": "Poll participation: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Someone just changed your poll at the following link <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Someone just deleted your poll \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Thank you for participating in the poll at the following link",
"thank-you-for-your-trust": "Thank you for your trust.",
"this-is-the-message-to-forward-to-the-poll-participants": "This is the message to forward to the poll participants.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "This message should NOT be sent to the poll participants. You should keep it private. <br/><br/>You can modify your poll at the following link",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "added a vote.<br/>You can visit your poll at the link",
"has-just-created-a-poll-called": "has just created a poll called",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "updated a vote.<br/>You can visit your poll at the link",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "wrote a comment.<br/>You can visit your poll at the link",
"thank-you-for-your-understanding": "Thank you for your understanding.",
"the-application": "The application",
"is-currently-under-maintenance": "is currently under maintenance.",
"submit-access": "Submit access",
"wrong-password": "Wrong password",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "You have to provide a password so you can participate to the poll.",
"you-have-to-provide-a-password-to-access-the-poll": "You have to provide a password to access the poll.",
"x-option": "%s option",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Anyone will be able to see your email address after you voted",
"best-choice": "Best choice",
"best-choices": "Best choices",
"Chart": "Chart",
"display-the-chart-of-the-results": "Display the chart of the results",
"edit-line-x": "Edit line: %s",
"link-to-edit-this-particular-line": "Link to edit this particular line",
"remove-line": "Remove line:",
"save-choices": "Save choices",
"scroll-to-the-left": "Scroll to the left",
"scroll-to-the-right": "Scroll to the right",
"the-current-best-choice-is": "The current best choice is:",
"the-current-best-choices-are": "The current best choices are:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "The link to edit this particular line has been copied to the clipboard!",
"Total": "Total",
"vote-no-for": "Vote \"no\" for",
"vote-yes-for": "Vote \"yes\" for",
"votes-under-reserve-for": "Votes under reserve for",
"polled-user": "polled user",
"polled-users": "polled users",
"admin-link-for-the-poll": "Admin link for the poll",
"cancel-the-description-edit": "Cancel the description edit",
"cancel-the-email-address-edit": "Cancel the email address edit",
"cancel-the-expiration-date-edit": "Cancel the expiration date edit",
"cancel-the-name-edit": "Cancel the name edit",
"cancel-the-rules-edit": "Cancel the rules edit",
"cancel-the-title-edit": "Cancel the title edit",
"creator-of-the-poll": "Creator of the poll",
"edit-name": "Edit name",
"edit-the-description": "Edit the description",
"edit-the-email-address": "Edit the email address",
"edit-the-expiry-date": "Edit the expiry date",
"edit-the-poll-rules": "Edit the poll rules",
"edit-title": "Edit title",
"export-to-csv": "Export to CSV",
"no-password": "No password",
"only-votes-are-protected": "Only votes are protected",
"password-protected": "Password protected",
"poll-rules": "Poll rules",
"Print": "Print",
"public-link-to-the-poll": "Public link to the poll",
"remove-all-comments": "Remove all comments",
"remove-all-votes": "Remove all votes",
"remove-password": "Remove password",
"remove-the-poll": "Remove the poll",
"results-are-hidden": "Results are hidden",
"results-are-visible": "Results are visible",
"rich-editor": "Rich editor",
"save-the-description": "Save the description",
"save-the-email-address": "Save the email address",
"save-the-new-expiration-date": "Save the new expiration date",
"save-the-new-name": "Save the new name",
"save-the-new-rules": "Save the new rules",
"save-the-new-title": "Save the new title",
"simple-editor": "Simple editor",
"title-of-the-poll": "Title of the poll",
"voters-email-addresses-are-collected": "Voters' email addresses are collected",
"voters-email-addresses-are-collected-and-required": "Voters' email addresses are collected and required",
"voters-email-addresses-are-collected-required-and-verified": "Voters' email addresses are collected, required and verified",
"voters-email-addresses-are-not-collected": "Voters' email addresses are not collected",
"votes-and-comments-are-locked": "Votes and comments are locked",
"votes-protected-by-password": "Votes protected by password",
"all-voters-can-modify-any-vote": "All voters can modify any vote",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "By defining an identifier that can facilitate access to the poll for unwanted people. It is recommended to protect it with a password.",
"collect-voters-email-addresses": "Collect voters' email addresses",
"Confirmation": "Confirmation",
"customize-the-url": "Customize the URL",
"email-addresses-are-collected-but-not-required": "Email addresses are collected but not required",
"email-addresses-are-not-collected": "Email addresses are not collected",
"email-addresses-are-required": "Email addresses are required",
"email-addresses-are-required-and-verified": "Email addresses are required and verified",
"go-to-step-2": "Go to step 2",
"limit-the-amount-of-voters-per-option": "Limit the amount of voters per option",
"more-informations-here": "More informations here:",
"only-the-poll-maker-can-see-the-poll-results": "Only the poll maker can see the poll results",
"optional-parameters": "Optional parameters",
"Permissions": "Permissions",
"poll-creation-1-of-3": "Poll creation (1 of 3)",
"poll-link": "Poll link",
"poll-title": "Poll title",
"receive-an-email-for-each-new-comment": "Receive an email for each new comment",
"receive-an-email-for-each-new-vote": "Receive an email for each new vote",
"required-fields-cannot-be-left-blank": "Required fields cannot be left blank.",
"the-identifier-can-contain-letters-numbers-and-dashes": "The identifier can contain letters, numbers and dashes \"-\".",
"the-results-are-publicly-visible": "The results are publicly visible",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "To make the description more attractive, you can use the Markdown format.",
"use-a-password-to-restrict-access": "Use a password to restrict access",
"value-max": "Value Max",
"voters-can-modify-their-own-vote-themselves": "Voters can modify their own vote themselves",
"votes-cannot-be-modified": "Votes cannot be modified",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Warning: Anyone can see the polled users' email addresses since all voters can modify any vote. You should restrict permission rules.",
"you-are-in-the-poll-creation-section": "You are in the poll creation section.",
"you-can-enable-or-disable-the-editor-at-will": "You can enable or disable the editor at will.",
"votes-per-option": "votes per option",
"go-to-step-3": "Go to step 3",
"return-to-step-1": "Return to step 1",
"add-a-choice": "Add a choice",
"add-a-link-or-an-image": "Add a link or an image",
"alternative-text": "Alternative text",
"links-or-images-can-be-included-using": "Links or images can be included using",
"markdown-syntax": "Markdown syntax",
"poll-options-2-of-3": "Poll options (2 of 3)",
"remove-a-choice": "Remove a choice",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "These fields are optional. You can add a link, an image or both.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "To create a poll you should provide at least two different choices.",
"url-of-the-image": "URL of the image",
"you-can-add-or-remove-choices-with-the-buttons": "You can add or remove choices with the buttons",
"add-a-day": "Add a day",
"add-a-time-slot": "Add a time slot",
"choose-dates-for-your-poll": "Choose dates for your poll",
"copy-times-from-the-first-day": "Copy times from the first day",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "For each selected day, you are free to suggest meeting times (e.g., \"8h\", \"8:30\", \"8h-10h\", \"evening\", etc.)",
"poll-dates-2-of-3": "Poll dates (2 of 3)",
"remove-a-day": "Remove a day",
"remove-a-time-slot": "Remove a time slot",
"remove-all-days": "Remove all days",
"remove-all-times": "Remove all times",
"remove-this-day": "Remove this day",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "To schedule an event you need to provide at least two choices (e.g., two time slots on one day or two days).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "You can add or remove additional days and times with the buttons",
"back-to-step-2": "Back to step 2",
"confirm-the-creation-of-your-poll": "Confirm the creation of your poll",
"create-the-poll": "Create the poll",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Expiry date:",
"list-of-options": "List of options",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Once you have confirmed the creation of your poll, you will automatically be redirected to the poll's administration page.",
"removal-date-and-confirmation-3-of-3": "Removal date and confirmation (3 of 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Then you will receive two emails: one containing the link of your poll for sending to the participants, the other containing the link to the poll administration page.",
"you-can-set-a-specific-expiry-date-for-the-poll": "You can set a specific expiry date for the poll.",
"your-poll-will-automatically-be-archived": "Your poll will automatically be archived",
"your-poll-will-be-automatically-archived-in-x-days": "Your poll will be automatically archived in %d days.",
"after-the-last-date-of-your-poll": "after the last date of your poll.",
"version-x": "Version %s",
"add-a-column": "Add a column",
"adding-a-column": "Adding a column",
"all-comments-deleted": "All comments deleted",
"all-votes-deleted": "All votes deleted",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "As poll administrator, you can change all the lines of this poll with this button",
"back-to-the-poll": "Back to the poll",
"choice-added": "Choice added",
"collect-the-emails-of-the-polled-users-for-the-choice": "Collect the emails of the polled users for the choice",
"column-deleted": "Column deleted",
"comment-deleted": "Comment deleted",
"confirm-removal-of-all-comments": "Confirm removal of all comments",
"confirm-removal-of-all-votes": "Confirm removal of all votes",
"confirm-removal-of-the-column": "Confirm removal of the column.",
"confirm-removal-of-your-poll": "Confirm removal of your poll",
"delete-poll": "Delete poll",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Finally, you can change the properties of this poll such as the title, the comments or your email address.",
"keep-comments": "Keep comments",
"keep-the-comments": "Keep the comments",
"keep-the-poll": "Keep the poll",
"keep-the-votes": "Keep the votes",
"keep-this-poll": "Keep this poll",
"keep-votes": "Keep votes",
"poll-fully-deleted": "Poll fully deleted",
"poll-saved": "Poll saved",
"remove-column": "Remove column",
"remove-the-comments": "Remove the comments",
"remove-the-votes": "Remove the votes",
"the-poll-was-created": "The poll was created.",
"vote-added": "Vote added",
"vote-deleted": "Vote deleted",
"vote-updated": "Vote updated",
"you-can-add-a-new-scheduling-date-to-your-poll": "You can add a new scheduling date to your poll.",
"your-poll-has-been-removed": "Your poll has been removed!",
"and-add-a-new-column-with": "and add a new column with",
"remove-a-column-or-a-line-with": "remove a column or a line with",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Users who voted \"If need be\" for this option have left those email addresses:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Users who voted \"No\" for this option have left those email addresses:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Users who voted \"Yes\" for this option have left those email addresses:",
"deletion-date": "Deletion date:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "If you want to vote in this poll, you have to give your name, make your choice, and submit it by selecting the save button at the end of the line.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "The administrator locked this poll. Votes and comments are frozen, it is no longer possible to participate",
"the-poll-has-expired-it-will-soon-be-deleted": "The poll has expired, it will soon be deleted.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Your vote has been saved, but please note: you need to keep this personalised link to be able to edit your vote."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Crear una encuesta",
"define-dates-or-subjects-to-choose-from": "Definir las fechas o los temas a elegir",
"discuss-and-make-a-decision": "Discutan y tomen una decisión",
"do-you-want-to": "¿Quiere",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate es un servicio en línea que permite planificar un encuentro o tomar decisiones rápidamente y de manera sencilla. No es necesario registrarse.",
"here-is-how-it-works": "Así funciona:",
"send-the-poll-link-to-your-friends-or-colleagues": "Enviar el enlace de la encuesta a sus amigos o colegas",
"what-is-framadate": "¿Qué es Framadate?",
"view-an-example": "¿Ver un ejemplo?",
"cecill-b-license": "licencia CeCILL-B",
"framadate-is-licensed-under-the": "Se encuentra bajo la",
"framadate-was-initially-based-on": "Framadate se basó inicialmente en",
"the-software": "El software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Este software necesita tener activado el javascript y las cookies. Es compatible con los siguientes navegadores web:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un software desarrollado por la Universidad de Estrasburgo. Ahora, su desarrollo está realizado por la asociación Framasoft.",
"grow-your-own": "Cultive su jardín",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Si quiere instalar este software para su propio uso y de esta manera ganar en autonomía, nos puede ayudar en:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Para participar en el desarrollo del software, sugerir mejoras o simplemente descargarlo, por favor visite",
"the-development-site": "la página de desarrollo",
"Actions": "Acciones",
"Administration": "Administración",
"Author": "Autor",
"back-to-administration": "Volver a la administración",
"change-the-poll": "Cambiar la encuesta",
"Email": "Correo electrónico",
"Executed": "Ejecutado",
"expiry-date": "Fecha de expiración",
"Fail": "Error",
"failed": "Fallo:",
"Format": "Formato",
"Installation": "Instalación",
"Logs": "Histórico / bitácoras",
"Migration": "Migración",
"Nothing": "Nada",
"pages": "Páginas:",
"poll-id": "Identidad de la encuesta",
"poll-deleted": "Encuesta borrada",
"Polls": "Encuestas",
"Purge": "Purgar",
"purge-the-polls": "Purgar las encuestas",
"purged": "Purgados:",
"see-the-poll": "Ver la encuesta",
"skipped": "Omitidos:",
"Status": "Estado",
"succeeded": "Con éxito:",
"Success": "Éxito",
"Summary": "Resumen",
"Title": "Título",
"Votes": "Votos",
"Waiting": "En espera",
"polls-in-the-database-at-this-time": "encuestas en la base de datos a la fecha",
"check-again": "Verificar nuevamente",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Considere habilitar la extensión OpenSSL de PHP para incrementar la seguridad.",
"consider-setting-the-date-timezone-in-php-ini": "Considere establecer el valor de « date.timezone » en php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Considere establecer « session.cookie_httponly = 1 » en el archivo php.ini o agregue « php_value session.cookie_httponly 1 » al archivo .htaccess para que los cookies no sean accesibles desde Javascript.",
"continue-the-installation": "Continuar con la instalación",
"cookies-are-served-from-http-only": "Los cookies son accesibles únicamente a través de HTTP.",
"installation-checking": "Verificación de instalación",
"openssl-extension-loaded": "La extensión OpenSSL está cargada.",
"php-intl-extension-is-enabled": "La extensión PHP Intl está cargada.",
"php-version-x-is-enough-needed-at-least-php-x": "La versión %s de PHP es suficiente (Se require al menos PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "El directorio de configuración (%s) no tiene permisos de escritura y el archivo (%s) no existe.",
"the-config-file-directory-x-is-writable": "El directorio de configuración (%s) tiene permisos de escritura.",
"the-config-file-exists": "El archivo de configuración existe.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "El directorio de compilación de plantillas (%s) no existe en \"%s\". Por favor vuelva a intentar el proceso de instalación.",
"the-template-compile-directory-x-is-not-writable": "El directorio de compilación de plantillas (%s) no tiene permisos de escritura.",
"the-template-compile-directory-x-is-writable": "El directorio de compilación de plantillas (%s) tiene permisos de escritura.",
"you-need-to-enable-the-php-intl-extension": "Necesitas activar la extensión Intl de PHP.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Su versión de PHP (%s) es demasiado antigua. Esta aplicación necesita al menos la version %s de PHP.",
"date-timezone-is-set": "date.timezone está definido.",
"add-a-comment-to-the-poll": "Añadir un comentario a la encuesta",
"Comment": "Su comentario",
"comment-saved": "Comentario añadido",
"Comments": "Comentarios de los votantes",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Introduzca su nombre y comentario antes de enviar el formulario rellenado",
"remove-comment": "Borrar el comentario",
"submit-comment": "Enviar el comentario",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %e de %B de %Y",
"b-y": "%B de %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d/%m/%Y %H:%M",
"add-range-dates": "Agregar rango de fechas",
"end-date": "Fecha de Finalización",
"start-date": "Fecha de Inicio",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Puede seleccionar como máximo 4 meses",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "día/mes/año",
"edit-link-for-poll-x": "Enlace para edición de encuesta \"%s\"",
"here-is-the-link-for-editing-your-vote": "Este es el enlace para editar su voto:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Si no quiere perder su enlace personalizado, se lo podemos enviar por email.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Por favor espere %d segundos antes de que podamos enviar nuevamente un correo electrónico, y luego vuelva a intentarlo.",
"REMINDER": "RECORDATORIO",
"Send": "Enviar",
"the-email-address-is-not-correct": "La dirección de correo electrónico incorrecta.",
"your-reminder-has-been-successfully-sent": "¡Su recordatorio ha sido enviado correctamente!",
"adding-vote-failed": "Error al crear el voto",
"cant-create-an-empty-column": "No se puede crear una columna vacía.",
"cant-create-the-config-php-file-in-x": "Imposible crear el archivo config.php en '%s'.",
"comment-failed": "Error al crear el comentario",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Los cookies están desactivados en su navegador. Se requiere activarlos para crear una encuesta.",
"enter-a-name": "Introduzca un nombre",
"enter-a-name-and-a-comment": "Introduzca su nombre y un comentario!",
"enter-a-title": "Introducza un título",
"enter-an-email-address": "Introduzca un correo electrónico",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Error en el límite de cantidad de votos: El valor debe ser un número entero mayor que 0",
"error": "¡Error!",
"failed-to-delete-all-comments": "No se han eliminado todos los comentarios",
"failed-to-delete-all-votes": "No se han eliminado todos los votos",
"failed-to-delete-column": "Error al eliminar la columna",
"failed-to-delete-the-comment": "No se ha podido eliminar el comentario",
"failed-to-delete-the-poll": "No se borró la encuesta",
"failed-to-delete-the-vote": "Error al borrar el voto!",
"failed-to-insert-the-comment": "¡Error al crear el comentario!",
"failed-to-save-poll": "Error al guardar la encuesta",
"forbidden": "¡Prohibido!",
"GenericErrorPollCreation": "¡Oh no! Su encuesta no pudo ser creada en este momento. Por favor, inténtelo de nuevo más tarde.",
"identifier-is-already-used": "El identificador ya está en uso",
"if-you-quit-now-your-changes-will-be-lost": "Si lo abandonas el programa, tus cambios se perderán.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Javascript está desactivado en su navegador. Se requiere activarlo para crear una encuesta.",
"missing-values": "Valores inexistentes",
"no-polls-found": "Ninguna encuesta encontrada",
"password-is-empty": "La contraseña está vacía.",
"passwords-do-not-match": "Las contraseñas no coinciden.",
"poll-has-been-updated-before-you-vote": "La encuesta fue actualizada antes de su voto",
"something-has-gone-wrong": "Algo ha ido mal...",
"something-is-wrong-with-the-format": "Algo está mal con el formato",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Algo está mal con el formato: Las URLs personalizadas solo pueden estar compuestas por caracteres alfanuméricos y guiones.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Algo está mal con el formato: El nombre no debe contener espacios al principio o al final",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "El correo electrónico es incorrecto. Tiene que introducir una dirección cálida (por ejemplo r.stallman@outlook.com) para recibir el enlace de su encuesta.",
"the-column-already-exists": "La columna ya existe",
"the-name-is-invalid": "Este nombre es invalido.",
"the-name-youve-chosen-already-exists-in-this-poll": "¡El nombre que eligió ya existe en la encuesta!",
"there-is-a-problem-with-your-choices": "Existe un problema con sus opciones",
"this-identifier-is-not-allowed": "Este ID no está autorizado",
"this-poll-doesnt-exist": "¡Esta encuesta no existe!",
"unable-to-connect-to-database": "No se puede conectar a la base de datos",
"update-vote-failed": "Error al actualizar el voto",
"you-already-voted": "Usted ya votó",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "No puede crear una encuesta con resultados no visibles con las siguientes opciones de edición: ",
"you-cant-select-more-than-x-dates": "No puede seleccionar más de %d fechas",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "No ha llenado la primera sección de la creación de la encuesta, o su sesión ha caducado.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Su voto no fue contado, porque alguien votó mientras tanto y entró en conflicto con sus elecciones y las condiciones de la encuesta. Por favor, vuelva a intentarlo.",
"Address": "Dirección",
"created-polls": "Encuestas creadas",
"have-a-good-day": "¡Que tenga un buen dia!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Esta es la lista de encuestas que puede manejar en %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Si usted no fue la fuente de esta acción y cree que es un abuso del servicio, por favor notifique al administrador a %s.",
"its-address": "Su dirección",
"last-access-date": "Última fecha de acceso",
"list-of-your-polls": "Listado de sus encuestas",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "P.D.: Este correo electrónico se envió porque usted - o alguien más - solicitó recuperar todas las encuestas realizadas con esta dirección de correo electrónico.",
"polls-saved-inside-this-browser": "Encuestas guardadas en este navegador",
"polls-sent": "Encuestas enviadas",
"remove-all-my-polls-from-this-browsers-index": "Eliminar todas mis encuestas del índice de este navegador",
"remove-poll-from-index": "Eliminar del índice de este navegador",
"send-me-my-polls": "Enviarme mis encuestas",
"send-my-polls-by-email": "Enviarme mis encuestas por correo electrónico",
"the-date-you-created-or-last-accessed-the-poll": "La fecha en que creó o accedió por última vez a la encuesta",
"the-title-of-the-poll": "El título de la encuesta",
"there-are-no-polls-saved-inside-your-browser-yet": "Aún no hay encuestas guardadas en su navegador",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Para eliminar estos datos, haga clic en la papelera de la línea correspondiente o haga clic en la opción \"Eliminar mi índice de encuestas\". Esto no borrará sus encuestas.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Para ayudarle a encontrar sus encuestas anteriores, guardamos cada encuesta que usted crea o a la que accede dentro de su navegador. Estos datos se guardan únicamente en este navegador. Se guardarán los siguientes datos:",
"visited-polls": "Encuestas visitadas",
"in-the-format-name-mail-com": "(en el formato nombre@correo.com)",
"Add": "Añadir",
"Back": "Volver",
"back-to-the-homepage-of": "Retroceder al inicio de",
"Cancel": "Cancelar",
"Choice": "Elección",
"Classic": "Clásico",
"Close": "Cerrar",
"create-your-own-polls": "Crear sus propias encuestas",
"creation-date": "Fecha de creación:",
"Date": "Fecha",
"Day": "Día",
"Description": "Descripción",
"Edit": "Cambio",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate es un servicio en línea para planificar una cita o tomar una decisión de forma rápida y sencilla.",
"Home": "Inicio",
"Information": "Información",
"legend": "Leyenda:",
"Link": "Enlace",
"Markdown": "Markdown",
"Next": "Seguir",
"No": "No",
"page-generated-in": "Página generada en",
"Poll": "Encuesta",
"Remove": "Borrar",
"Save": "Guardar",
"Search": "Búsqueda",
"Time": "Hora",
"under-reserve": "En caso de ser necesario",
"Validate": "Validar",
"Yes": "Si",
"your-email-address": "Su dirección de correo electrónico",
"your-name": "Su nombre",
"days": "días",
"for": "para",
"months": "meses",
"seconds": "segundos",
"vote": "voto",
"votes": "votos",
"with": "con",
"make-a-standard-poll": "Crear una encuesta clásica",
"schedule-an-event": "Planificar un evento",
"where-are-my-polls": "¿Dónde están mis encuestas?",
"administrator-mail-address": "Correo electrónico del administrador",
"application-name": "Nombre de la aplicación",
"clean-url": "URL Limpia",
"database-driver": "Controlador de base de datos/Database driver",
"database-hostname": "Nombre de host de la base de datos",
"database-name": "Nombre de la base de datos",
"database-port": "Puerto de la base de datos",
"default-language": "Lenguaje por defecto",
"General": "General",
"Install": "Instalar",
"migration-table": "Tabla de migración",
"Password": "Contraseña",
"Prefix": "Prefijo",
"respond-to-mail-address": "Correo electrónico para \"responder a\"",
"User": "Usuario",
"change-language": "Cambiar el idioma",
"select-language": "Elegir el idioma",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"La carretera es larga, pero el camino está despejado...\"<br/>Framasoft vive sólo de sus donaciones<br/>Gracias de antemano por su apoyo https://soutenir.framasoft.org",
"message-for-the-author": "Mensaje para el/la autor/a",
"notification-of-poll-x": "Notificación de la encuesta: %s",
"participant-link": "Para difusión a los votantes",
"poll-participation-x": "Participación a la encuesta: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Alguien acaba de modificar su encuesta, disponible en el siguiente enlace <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Alguien acaba de borrar su encuesta \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Gracias por participar en la encuesta en el siguiente enlace",
"thank-you-for-your-trust": "Gracias por su confianza.",
"this-is-the-message-to-forward-to-the-poll-participants": "Este es el mensaje que puede enviar a todos los votantes.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Este mensaje NO debe ser enviado a los participantes de la encuesta. Debería mantenerlo en privado. <br/><br/>Puede modificar su encuesta en el siguiente enlace",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "acaba de votar.<br/>Puede acceder a la encuesta siguiendo este enlace",
"has-just-created-a-poll-called": "acaba de crear una encuesta llamada",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "acaba de actualizar su voto.<br/>Puede acceder a la encuesta siguiendo este enlace",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "acaba de redactar un comentario.<br/>Puede acceder a la encuesta siguiendo este enlace",
"thank-you-for-your-understanding": "Gracias por su comprensión.",
"the-application": "La aplicación",
"is-currently-under-maintenance": "se encuentra en mantenimiento.",
"submit-access": "Acceder",
"wrong-password": "Contraseña incorrecta",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Debe ingresar una contraseña para poder participar de la encuesta.",
"you-have-to-provide-a-password-to-access-the-poll": "Debe ingresar una contraseña para acceder a la encuesta.",
"x-option": "%s opción",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Cualquiera podrá ver tu dirección de correo electrónico después de votar",
"best-choice": "Elección más popular",
"best-choices": "Elecciones más populares",
"Chart": "Gráfico",
"display-the-chart-of-the-results": "Mostrar el gráfico de resultados",
"edit-line-x": "Modificar la fila: %s",
"link-to-edit-this-particular-line": "Enlace para editar esta linea en particular",
"remove-line": "Borrar la fila:",
"save-choices": "Guardar los cambios",
"scroll-to-the-left": "Desplazar hacia la izquierda",
"scroll-to-the-right": "Desplazar hacia la derecha",
"the-current-best-choice-is": "La elección más popular actualmente es:",
"the-current-best-choices-are": "Las elecciones más populares actualmente son:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "¡El enlace para editar esta linea en particular ha sido copiado al portapapeles!",
"Total": "Suma",
"vote-no-for": "Votar « no » para",
"vote-yes-for": "Votar « si » para",
"votes-under-reserve-for": "Votos bajo reserva para",
"polled-user": "Votante",
"polled-users": "Votantes",
"admin-link-for-the-poll": "Enlace de administración de la encuesta",
"cancel-the-description-edit": "Cancelar el cambio de descripción",
"cancel-the-email-address-edit": "Cancelar el cambio de correo electrónico",
"cancel-the-expiration-date-edit": "Cancelar el cambio de fecha de expiración",
"cancel-the-name-edit": "Cancelar el cambio de autor",
"cancel-the-rules-edit": "Cancelar los cambios en las reglas",
"cancel-the-title-edit": "Cancelar el cambio de título",
"creator-of-the-poll": "Autor/a de la encuesta",
"edit-name": "Modificar nombre",
"edit-the-description": "Modificar la descripción",
"edit-the-email-address": "Modificar el correo electrónico",
"edit-the-expiry-date": "Modificar la fecha de expiración",
"edit-the-poll-rules": "Modificar los permisos de la encuesta",
"edit-title": "Modificar el título",
"export-to-csv": "Exportar en CSV",
"no-password": "Sin contraseña",
"only-votes-are-protected": "Sólo los votos están protegidos",
"password-protected": "Protegido por contraseña",
"poll-rules": "Permisos de la encuesta",
"Print": "Imprimir",
"public-link-to-the-poll": "Enlace público de la encuesta",
"remove-all-comments": "Eliminar todos los comentarios",
"remove-all-votes": "Eliminar todos los votos",
"remove-password": "Eliminar contraseña",
"remove-the-poll": "Eliminar la encuesta",
"results-are-hidden": "Los resultados están ocultos",
"results-are-visible": "Los resultados son visibles",
"rich-editor": "Editor avanzado",
"save-the-description": "Guardar la descripción",
"save-the-email-address": "Guardar el correo electrónico",
"save-the-new-expiration-date": "Guardar la fecha de expiración",
"save-the-new-name": "Guardar el nuevo nombre",
"save-the-new-rules": "Guardar las nuevas reglas",
"save-the-new-title": "Guardar el nuevo título",
"simple-editor": "Editor simple",
"title-of-the-poll": "Título de la encuesta",
"voters-email-addresses-are-collected": "Se recopilan las direcciones de correo electrónico de los votantes",
"voters-email-addresses-are-collected-and-required": "Las direcciones de correo electrónico de los votantes se recopilan y se requieren",
"voters-email-addresses-are-collected-required-and-verified": "Las direcciones de correo electrónico de los votantes se recopilan, se requieren y se verifican",
"voters-email-addresses-are-not-collected": "Las direcciones de correo electrónico de los votantes no se recopilan",
"votes-and-comments-are-locked": "Los votos y comentarios están bloqueados",
"votes-protected-by-password": "Votos protegidos por contraseña",
"all-voters-can-modify-any-vote": "Todos los votantes pueden modificar cualquier voto",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "La definición de un identificador para la encuesta puede hacerla accesible a gente no deseada. Es recomendable protegerla con una contraseña.",
"collect-voters-email-addresses": "Recopilar las direcciones de correo electrónico de los votantes",
"Confirmation": "Confirmación",
"customize-the-url": "Personalizar la URL",
"email-addresses-are-collected-but-not-required": "Las direcciones de correo electrónico se recopilan pero no se requieren",
"email-addresses-are-not-collected": "Las direcciones de correo electrónico no se recopilan",
"email-addresses-are-required": "Las direcciones de correo electrónico se requieren",
"email-addresses-are-required-and-verified": "Las direcciones de correo electrónico se requieren y se verifican",
"go-to-step-2": "Ir al paso número 2",
"limit-the-amount-of-voters-per-option": "Limitar el número de votantes por opción",
"more-informations-here": "Más información aqui:",
"only-the-poll-maker-can-see-the-poll-results": "Solo el creador de la encuesta puede ver los resultados",
"optional-parameters": "Parámetros opcionales",
"Permissions": "Permisos",
"poll-creation-1-of-3": "Creación de la encuesta (1 de 3)",
"poll-link": "Enlace a la encuesta",
"poll-title": "Título de la encuesta",
"receive-an-email-for-each-new-comment": "Recibir un correo electrónico para cada nuevo comentario",
"receive-an-email-for-each-new-vote": "Recibir un correo electrónico para cada nuevo voto",
"required-fields-cannot-be-left-blank": "Los campos requeridos (*) no pueden ser dejados en blanco.",
"the-identifier-can-contain-letters-numbers-and-dashes": "El identificador puede incluir letras, números y guiones \"-\".",
"the-results-are-publicly-visible": "Los resultados son visibles públicamente",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Para hacer la descripción más atractiva es posible usar el formato Markdown.",
"use-a-password-to-restrict-access": "Utilice una contraseña para restringir el acceso",
"value-max": "Valor max",
"voters-can-modify-their-own-vote-themselves": "Los votos pueden ser modificados por su autor",
"votes-cannot-be-modified": "Los votos no pueden ser modificados",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Advertencia: Cualquiera puede ver las direcciones de correo electrónico de los usuarios encuestados, ya que todos los votantes pueden modificar cualquier voto. Debería restringir las reglas de permisos.",
"you-are-in-the-poll-creation-section": "Estás en la sección de creación de encuestas.",
"you-can-enable-or-disable-the-editor-at-will": "Puede activar o desactivar el editor cuando lo desee.",
"votes-per-option": "votos por opción",
"go-to-step-3": "Ir al paso número 3",
"return-to-step-1": "Volver al paso número 1",
"add-a-choice": "Añadir una opción",
"add-a-link-or-an-image": "Añadir un enlace o una imagen",
"alternative-text": "Texto alternativo",
"links-or-images-can-be-included-using": "Se peude proponer enlaces o imágenes utilizando",
"markdown-syntax": "la síntaxis Markdown",
"poll-options-2-of-3": "Elegir los temas (2 de 3)",
"remove-a-choice": "Eliminar una opción",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Estos campos son opcionales. Puede añadir un enlace, una imagen, o ambos.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Para crear una encueta clásica, dene proponer por lo menos dos opciones.",
"url-of-the-image": "URL de la imagen",
"you-can-add-or-remove-choices-with-the-buttons": "Puede añadir o borrar las opciones con los botones",
"add-a-day": "Añadir un día",
"add-a-time-slot": "Añadir un horario",
"choose-dates-for-your-poll": "Elija las fechas de su encuesta",
"copy-times-from-the-first-day": "Copiar los horarios del primer día en los otros días",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Para cada día seleccionado, puede elegir o no, horarios de reunión (por ejemplo: \"8:00\", \"8:30\", \"8:00-10:00\", \"noche\", etc.)",
"poll-dates-2-of-3": "Elegir las fechas (2 de 3)",
"remove-a-day": "Eliminar un día",
"remove-a-time-slot": "Eliminar una franja horaria",
"remove-all-days": "Borrar todos los días",
"remove-all-times": "Eliminar todos los horarios",
"remove-this-day": "Eliminar este dia",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Para programar un evento, tiene que proponer por lo menos dos opciones (dos horarios para un día, o dos días).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Puede agregar o borrar días y horarios con los botones",
"back-to-step-2": "Volver al paso número 2",
"confirm-the-creation-of-your-poll": "Comfirmar la creación de la encuesta",
"create-the-poll": "Crear la encuesta",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Fecha de caducidad:",
"list-of-options": "Lista de opciones",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Una vez confirmada la creación de la encuesta, estará automáticamente redirigido/a hacia la página de administración de su encuesta.",
"removal-date-and-confirmation-3-of-3": "Fecha de caducidad y confirmación (3 de 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Luego, recibirá dos correos electrónicos: el primero con el enlace de la encuesta, para enviar a los votantes, y el segundo con el enlace de la página de administración de la encuesta.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Puede establecer una fecha de caducidad específica para la encuesta.",
"your-poll-will-automatically-be-archived": "Su encuesta estará archivada de manera automática",
"your-poll-will-be-automatically-archived-in-x-days": "Su encuesta estará archivada de manera automática en %d días.",
"after-the-last-date-of-your-poll": "después de la última fecha de su encuesta.",
"version-x": "Versión %s",
"add-a-column": "Añadir una columna",
"adding-a-column": "Añadiendo una columna",
"all-comments-deleted": "Todos los comentarios han sido borrados",
"all-votes-deleted": "Todos los votos han sido borrados",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Como administrador, Usted puede cambiar todas las filas de la encuesta con este botón",
"back-to-the-poll": "Volver a la encuesta",
"choice-added": "Elección añadida",
"collect-the-emails-of-the-polled-users-for-the-choice": "Recopilar los correos electrónicos de los usuarios encuestados para la elección",
"column-deleted": "Columna borrada",
"comment-deleted": "Comentario borrado",
"confirm-removal-of-all-comments": "Confirmar la eliminación de todos los comentarios de la encuesta",
"confirm-removal-of-all-votes": "Confirma la eliminación de todos los votos de la encuesta",
"confirm-removal-of-the-column": "Confirmar la eliminación de la columna.",
"confirm-removal-of-your-poll": "Confirmar la eliminación de la encuesta",
"delete-poll": "Borrar encuesta",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Finalmente, puede cambiar las informaciones de esta encuesta, como el título, los comentarios o la dirección de correo electrónico.",
"keep-comments": "Conservar comentarios",
"keep-the-comments": "Conservar los comentarios",
"keep-the-poll": "Conservar la encuesta",
"keep-the-votes": "Conservar los votos",
"keep-this-poll": "Conservar esta encuesta",
"keep-votes": "Conservar los votos",
"poll-fully-deleted": "Encuesta borrada enteramente",
"poll-saved": "Encuesta guardada",
"remove-column": "Borrar la columna",
"remove-the-comments": "Borrar los comentarios",
"remove-the-votes": "Borrar los votos",
"the-poll-was-created": "La encuesta ha sido creada.",
"vote-added": "Voto añadido",
"vote-deleted": "Voto borrado",
"vote-updated": "Voto actualizado",
"you-can-add-a-new-scheduling-date-to-your-poll": "Puede añadir una nueva fecha de encuentro a su encuesta.",
"your-poll-has-been-removed": "Su encuesta ha sido borrada!",
"and-add-a-new-column-with": "y se puede añadir una columna con",
"remove-a-column-or-a-line-with": "borrar una columna o una fila con",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Los usuarios que votaron \"Si es necesario\" por esta opción han dejado esas direcciones de correo electrónico:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Los usuarios que votaron \"No\" por esta opción han dejado esas direcciones de correo electrónico:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Los usuarios que votaron \"Sí\" por esta opción han dejado esas direcciones de correo electrónico:",
"deletion-date": "Fecha de supresión:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Si quieres votar en esta encuesta, tienes que dar tu nombre, hacer tu elección y enviarla seleccionando el botón guardar al final de la línea.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "La persona a cargo de la administración bloqueó esta encuesta. Los votos y comentarios están bloqueados, ya no se permite participar",
"the-poll-has-expired-it-will-soon-be-deleted": "La encuesta expiró, pronto desaparecerá.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Su voto fue guardado, pero tenga en cuenta que esta encuesta solo permite modificar su voto a través de este enlace personalizado (conservelo cuidadosamente)."
}

View File

@ -0,0 +1,428 @@
{
"create-a-poll": "Créez un sondage",
"define-dates-or-subjects-to-choose-from": "Déterminez les dates ou les sujets à choisir",
"discuss-and-make-a-decision": "Discutez et prenez votre décision",
"do-you-want-to": "Voulez-vous",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate est un service en ligne permettant de planifier un rendez-vous ou prendre des décisions rapidement et simplement. Aucune inscription préalable nest nécessaire.",
"here-is-how-it-works": "Voici comment ça fonctionne :",
"send-the-poll-link-to-your-friends-or-colleagues": "Envoyez le lien du sondage à vos ami·e·s ou collègues",
"what-is-framadate": "Prise en main",
"view-an-example": "voir un exemple ?",
"cecill-b-license": "licence CeCILL-B",
"framadate-is-licensed-under-the": "Il est régi par la",
"framadate-was-initially-based-on": "Framadate est initialement basé sur",
"the-software": "Le logiciel",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Ce logiciel requiert lactivation du JavaScript et des cookies. Il est compatible avec les navigateurs web suivants :",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un logiciel développé par l'Université de Strasbourg. Aujourd'hui, son développement est assuré par lassociation Framasoft.",
"grow-your-own": "Cultivez votre jardin",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Si vous souhaitez installer ce logiciel pour votre propre usage et ainsi gagner en autonomie, nous vous aidons sur :",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Pour participer au développement du logiciel, proposer des améliorations ou simplement le télécharger, rendez-vous sur",
"the-development-site": "le site de développement",
"Actions": "Actions",
"Administration": "Administration",
"Author": "Auteur·rice",
"back-to-administration": "Retour à l'administration",
"change-the-poll": "Modifier le sondage",
"Email": "Courriel",
"Executed": "Exécutées",
"expiry-date": "Date dexpiration",
"Fail": "Échec",
"failed": "Échec :",
"Format": "Format",
"Installation": "Installation",
"Logs": "Historique",
"Migration": "Migration",
"Nothing": "Rien",
"pages": "Pages :",
"poll-id": "ID sondage",
"poll-deleted": "Sondage complètement supprimé",
"Polls": "Sondages",
"Purge": "Purger",
"purge-the-polls": "Purger les sondages",
"purged": "Purgés :",
"see-the-poll": "Voir le sondage",
"skipped": "Passé :",
"Status": "Statut",
"succeeded": "Succès :",
"Success": "Réussite",
"Summary": "Résumé",
"Title": "Titre",
"Votes": "Votes",
"Waiting": "En attente",
"polls-in-the-database-at-this-time": "sondages dans la base actuellement",
"check-again": "Vérifier à nouveau",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Veuillez considérer l'activation de l'extension PHP OpenSSL pour améliorer la sécurité.",
"consider-setting-the-date-timezone-in-php-ini": "Veuillez considérer la définition de date.timezone dans le php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Pensez à définir « session.cookie_httponly = 1 » dans votre fichier php.ini ou bien ajouter « php_value session.cookie_httponly 1 » à votre fichier .htaccess de telle sorte que les cookies ne puissent pas être accessibles depuis Javascript.",
"continue-the-installation": "Continuer l'installation",
"cookies-are-served-from-http-only": "Les cookies sont accessibles uniquement via HTTP.",
"installation-checking": "Vérifications de l'installation",
"openssl-extension-loaded": "L'extension PHP OpenSSL est chargée.",
"php-intl-extension-is-enabled": "L'extension PHP Intl est activée.",
"php-version-x-is-enough-needed-at-least-php-x": "Version de PHP %s suffisante (nécessite au moins PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Le dossier du fichier de configuration (%s) n'est pas accessible en écriture et le fichier de configuration (%s) n'existe pas.",
"the-config-file-directory-x-is-writable": "Le dossier du fichier de configuration (%s) est accessible en écriture.",
"the-config-file-exists": "Le fichier de configuration existe.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Le dossier de compilation des templates (%s) n'existe pas dans \"%s\". Essayez de relancer l'installation.",
"the-template-compile-directory-x-is-not-writable": "Le dossier de compilation des templates (%s) n'est pas accessible en écriture.",
"the-template-compile-directory-x-is-writable": "Le dossier de compilation des templates (%s) est accessible en écriture.",
"you-need-to-enable-the-php-intl-extension": "Vous devez activer l'extension PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Votre version de PHP (%s) est trop vieille. Cette application a besoin de PHP %s au moins.",
"date-timezone-is-set": "date.timezone est défini.",
"add-a-comment-to-the-poll": "Ajouter un commentaire au sondage",
"Comment": "Votre commentaire",
"comment-saved": "Commentaire ajouté",
"Comments": "Commentaires de sondé·e·s",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Entrez votre nom et commentaire avant de soumettre le formulaire",
"remove-comment": "Supprimer le commentaire",
"submit-comment": "Envoyer le commentaire",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d-%m-%Y %H:%M",
"add-range-dates": "Ajout d'un intervalle de dates",
"end-date": "Date de fin",
"start-date": "Date de début",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Vous pouvez sélectionner au maximum 4 mois",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "jour/mois/année",
"edit-link-for-poll-x": "Lien d'édition du sondage \"%s\"",
"here-is-the-link-for-editing-your-vote": "Voici le lien pour éditer votre vote :",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Afin de ne pas perdre ce lien d'édition de vote, nous pouvons vous l'envoyer par courriel.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Veuillez patienter encore %d secondes avant que nous puissions vous envoyer un email, puis réessayez.",
"REMINDER": "RAPPEL",
"Send": "Envoyer",
"the-email-address-is-not-correct": "Courriel incorrect.",
"your-reminder-has-been-successfully-sent": "Votre rappel a été envoyé avec succès !",
"adding-vote-failed": "Échec de l'ajout d'un vote",
"cant-create-an-empty-column": "Impossible de créer une colonne vide.",
"cant-create-the-config-php-file-in-x": "Impossible de créer le fichier config.php dans '%s'.",
"comment-failed": "Échec du commentaire",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Les cookies sont désactivés sur votre navigateur. Leur activation est requise pour la création d'un sondage.",
"enter-a-name": "Vous n'avez pas saisi de nom !",
"enter-a-name-and-a-comment": "Merci de remplir les deux champs !",
"enter-a-title": "Il faut saisir un titre !",
"enter-an-email-address": "Il faut saisir une adresse électronique !",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Erreur : le nombre de votants doit être un nombre supérieur à 0",
"error": "Erreur !",
"failed-to-delete-all-comments": "Impossible de supprimer tous les commentaires",
"failed-to-delete-all-votes": "Impossible de supprimer tous les votes",
"failed-to-delete-column": "Échec de la suppression de colonne",
"failed-to-delete-the-comment": "Impossible de supprimer le commentaire",
"failed-to-delete-the-poll": "Impossible de supprimer le sondage",
"failed-to-delete-the-vote": "Échec de la suppression du vote !",
"failed-to-insert-the-comment": "Échec à l'insertion du commentaire !",
"failed-to-save-poll": "Échec de la sauvegarde du sondage",
"forbidden": "Interdit !",
"GenericErrorPollCreation": "Oh non ! Votre sondage n'a pas pu être enregistré. Nous sommes désolés. Merci de réessayer.",
"identifier-is-already-used": "L'identifiant est déjà utilisé",
"if-you-quit-now-your-changes-will-be-lost": "Si vous quittez maintenant, vos modifications seront perdues.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript est désactivé sur votre navigateur. Son activation est requise pour la création d'un sondage.",
"missing-values": "Il manque des valeurs",
"no-polls-found": "Aucun sondage n'a été trouvé",
"password-is-empty": "Le mot de passe est vide.",
"passwords-do-not-match": "Les mots de passe ne correspondent pas.",
"poll-has-been-updated-before-you-vote": "Le sondage a été mis à jour avant votre vote",
"something-has-gone-wrong": "Quelque chose ne va pas...",
"something-is-wrong-with-the-format": "Quelque chose ne va pas avec le format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Format incorrect : seuls les caractères alphabétiques, nombres et tirets sont acceptés dans les URLs personnalisées.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Quelque chose ne va pas avec le format : le nom ne devrait pas contenir d'espaces avant ou après",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "L'adresse saisie n'est pas correcte ! Il faut une adresse électronique valide (par exemple r.stallman@outlock.com) pour recevoir le lien vers le sondage.",
"the-column-already-exists": "La colonne existe déjà",
"the-name-is-invalid": "Le nom n'est pas valide.",
"the-name-youve-chosen-already-exists-in-this-poll": "Le nom que vous avez choisi existe déjà !",
"there-is-a-problem-with-your-choices": "Il y a un problème avec vos choix",
"this-identifier-is-not-allowed": "Cet id n'est pas autorisé",
"this-poll-doesnt-exist": "Ce sondage n'existe pas !",
"unable-to-connect-to-database": "Impossible de se connecter à la base de données",
"update-vote-failed": "Échec de la mise à jour du vote",
"you-already-voted": "Vous avez déjà voté",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Vous ne pouvez pas créer de sondage avec résulats cachés avec les options d'édition suivantes : ",
"you-cant-select-more-than-x-dates": "Vous ne pouvez pas choisir plus de %d dates",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Vous n'avez pas renseigné la première page du sondage, ou bien votre session a expiré.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Votre vote n'a pas été pris en compte, car quelqu'un a voté entre temps et cela entre en conflit avec vos choix et les conditions du sondage. Merci de réessayer.",
"Address": "Adresse",
"created-polls": "Sondages créés",
"have-a-good-day": "Bonne journée !",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Voici la liste des sondages que vous administrez sur %s :",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Si jamais vous n'étiez pas à l'origine de cette action et que vous pensez qu'il s'agit d'un abus, vous pouvez nous le signaler à l'administrateur·rice sur %s.",
"its-address": "Son adresse",
"last-access-date": "Date de dernier accès",
"list-of-your-polls": "Liste de vos sondages",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS : ce mail a été envoyé parce que vous ou quelqu'un d'autre avez demandé la récupération des sondages créés à l'aide de votre adresse email.",
"polls-saved-inside-this-browser": "Sondages stockés dans ce navigateur",
"polls-sent": "Sondages envoyés",
"remove-all-my-polls-from-this-browsers-index": "Supprimer tous mes sondages de l'index de ce navigateur",
"remove-poll-from-index": "Supprimer le sondage de l'index",
"send-me-my-polls": "Envoyer mes sondages",
"send-my-polls-by-email": "Envoyer mes sondages par courriel",
"the-date-you-created-or-last-accessed-the-poll": "La date à laquelle vous avez créé ou accédé en dernier le sondage",
"the-title-of-the-poll": "Le titre du sondage",
"there-are-no-polls-saved-inside-your-browser-yet": "Il n'y a pas encore de sondages sauvegardés dans votre navigateur",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Pour supprimer ces données, cliquez sur l'icône en forme de poubelle en face de chaque ligne ou cliquez sur le bouton « Supprimer l'index de mes sondages ». Cela ne supprimera pas vos sondages.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Pour vous aider à trouver vos sondages précédents, nous enregistrons des informations sur chaque sondage que vous effectuez ou auquel vous accédez dans votre navigateur. Ces données sont sauvegardées uniquement dans votre navigateur. Les données suivantes seront enregistrées :",
"visited-polls": "Sondages accédés",
"in-the-format-name-mail-com": "(au format nom@mail.com)",
"Add": "Ajouter",
"Back": "Précédent",
"back-to-the-homepage-of": "Retourner à la page d'accueil de",
"Cancel": "Annuler",
"Choice": "Choix",
"Classic": "Classique",
"Close": "Fermer",
"create-your-own-polls": "Créez vos propres sondages",
"creation-date": "Date de création :",
"Date": "Date",
"Day": "Jour",
"Description": "Description",
"Edit": "Modifier",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate est un service en ligne permettant de planifier un rendez-vous ou prendre des décisions rapidement et simplement.",
"Home": "Accueil",
"Information": "Légende",
"legend": "Légende :",
"Link": "Lien",
"Markdown": "Markdown",
"Next": "Continuer",
"No": "Non",
"page-generated-in": "Page générée en",
"Poll": "Sondage",
"Remove": "Effacer",
"Save": "Enregistrer",
"Search": "Chercher",
"Time": "Horaire",
"under-reserve": "Si nécessaire",
"Unknown": "Inconnu",
"Validate": "Valider",
"Yes": "Oui",
"your-email-address": "Votre courriel",
"your-name": "Votre nom",
"days": "jours",
"for": "à",
"months": "mois",
"seconds": "secondes",
"vote": "vote",
"votes": "votes",
"with": "avec",
"make-a-standard-poll": "Créer un sondage classique",
"schedule-an-event": "Créer un sondage spécial dates",
"where-are-my-polls": "Où sont mes sondages ?",
"administrator-mail-address": "Adresse mail de l'application",
"application-name": "Nom de l'application",
"clean-url": "URL propres",
"database-driver": "Pilote de la base de données",
"database-hostname": "Nom d'hôte",
"database-name": "Nom de la base de données",
"database-port": "Port de la base de données",
"default-language": "Langue par défaut",
"General": "Général",
"Install": "Installer",
"migration-table": "Table de migration",
"Password": "Mot de passe",
"Prefix": "Préfixe",
"respond-to-mail-address": "Mail de réponse",
"User": "Utilisateur·rice",
"change-language": "Changer la langue",
"select-language": "Choisir la langue",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo":  La route est longue, mais la voie est libre… »<br/>Framasoft ne vit que par vos dons (déductibles des impôts).<br/>Merci d'avance pour votre soutien https://soutenir.framasoft.org.",
"message-for-the-author": "Réservé à l'auteur·rice",
"notification-of-poll-x": "Notification d'un sondage : %s",
"participant-link": "Pour diffusion aux sondé·e·s",
"poll-participation-x": "Participation au sondage : %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Quelqu'un·e vient de modifier votre sondage accessible au lien suivant <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Quelqu'un·e vient de supprimer votre sondage \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Merci de bien vouloir participer au sondage à l'adresse suivante",
"thank-you-for-your-trust": "Merci de votre confiance.",
"this-is-the-message-to-forward-to-the-poll-participants": "Ceci est le message qui doit être envoyé aux sondé·e·s.<br/>Vous pouvez maintenant transmettre ce message à toutes les personnes susceptibles de participer au vote.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Ce message ne doit PAS être diffusé aux sondé·e·s. Il est réservé à l'auteur·rice du sondage.<br/><br/>Vous pouvez modifier ce sondage à l'adresse suivante",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "vient de voter.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"has-just-created-a-poll-called": "vient de créer un sondage intitulé",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "vient de mettre à jour un vote.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "vient de rédiger un commentaire.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
"thank-you-for-your-understanding": "Merci de votre compréhension.",
"the-application": "L'application",
"is-currently-under-maintenance": "est en cours de maintenance.",
"submit-access": "Accéder",
"wrong-password": "Mot de passe incorrect.",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Vous devez donner le mot de passe pour pouvoir participer à ce sondage.",
"you-have-to-provide-a-password-to-access-the-poll": "Vous devez donner le mot de passe pour avoir accès à ce sondage.",
"x-option": "%s option",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Tout le monde pourra accéder à votre courriel après que vous ayez voté",
"best-choice": "Meilleur choix",
"best-choices": "Meilleurs choix",
"Chart": "Graphique",
"display-the-chart-of-the-results": "Afficher le graphique des résultats",
"edit-line-x": "Modifier la ligne : %s",
"link-to-edit-this-particular-line": "Lien pour éditer cette ligne",
"remove-line": "Supprimer la ligne :",
"save-choices": "Enregistrer les choix",
"scroll-to-the-left": "Faire défiler à gauche",
"scroll-to-the-right": "Faire défiler à droite",
"the-current-best-choice-is": "Pour l'instant, le choix ayant reçu le plus grand nombre de votes est :",
"the-current-best-choices-are": "Pour l'instant, les choix ayant reçu le plus grand nombre de votes sont :",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Le lien pour l'édition de cette ligne a été copié dans le presse-papier !",
"Total": "Somme",
"vote-no-for": "Voter « non » pour",
"vote-yes-for": "Voter « oui » pour",
"votes-under-reserve-for": "Si nécessaire",
"polled-user": "votant·e",
"polled-users": "votant·e·s",
"admin-link-for-the-poll": "Lien d'administration du sondage",
"cancel-the-description-edit": "Annuler le changement de description",
"cancel-the-email-address-edit": "Annuler le changement de courriel",
"cancel-the-expiration-date-edit": "Annuler le changement de date d'expiration",
"cancel-the-name-edit": "Annuler le changement d'auteur·rice",
"cancel-the-rules-edit": "Annuler le changement de permissions",
"cancel-the-title-edit": "Annuler le changement de titre",
"creator-of-the-poll": "Auteur·rice du sondage",
"edit-name": "Modification de l'auteur·rice",
"edit-the-description": "Modifier la description",
"edit-the-email-address": "Modifier le courriel",
"edit-the-expiry-date": "Modifier la date d'expiration",
"edit-the-poll-rules": "Modifier les permissions du sondage",
"edit-title": "Modifier le titre",
"export-to-csv": "Export Tableur (CSV)",
"no-password": "Pas de mot de passe",
"only-votes-are-protected": "Seul les votes sont protégés",
"password-protected": "Protégé par mot de passe",
"poll-rules": "Permissions du sondage",
"Print": "Imprimer",
"public-link-to-the-poll": "Lien public du sondage",
"remove-all-comments": "Supprimer tous les commentaires",
"remove-all-votes": "Supprimer tous les votes",
"remove-password": "Supprimer le mot de passe",
"remove-the-poll": "Supprimer le sondage",
"results-are-hidden": "Les résultats sont cachés",
"results-are-visible": "Les résultats sont visibles",
"rich-editor": "Editeur avancé",
"save-the-description": "Enregistrer la description",
"save-the-email-address": "Enregistrer le courriel",
"save-the-new-expiration-date": "Enregistrer la date d'expiration",
"save-the-new-name": "Enregistrer l'auteur·rice",
"save-the-new-rules": "Enregistrer les nouvelles permissions",
"save-the-new-title": "Enregistrer le nouveau titre",
"simple-editor": "Editeur simple",
"title-of-the-poll": "Titre du sondage",
"voters-email-addresses-are-collected": "Les courriels des votants sont collectés",
"voters-email-addresses-are-collected-and-required": "Les courriels des votants sont collectés et requis",
"voters-email-addresses-are-collected-required-and-verified": "Les courriels des votants sont collectés, requis et vérifiés",
"voters-email-addresses-are-not-collected": "Les courriels des votants ne sont pas collectés",
"votes-and-comments-are-locked": "Il n'est plus possible de voter",
"votes-protected-by-password": "Votes protégés par mot de passe",
"all-voters-can-modify-any-vote": "Tou·te·s les sondé·e·s peuvent modifier tous les votes",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "La modification du lien du sondage peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"collect-voters-email-addresses": "Collecter les courriels des votants",
"Confirmation": "Confirmation",
"customize-the-url": "Personnaliser le lien",
"email-addresses-are-collected-but-not-required": "Les courriels sont collectés mais pas requis",
"email-addresses-are-not-collected": "Les courriels ne sont pas collectés",
"email-addresses-are-required": "Les courriels sont requis",
"email-addresses-are-required-and-verified": "Les courriels sont requis et vérifiés",
"go-to-step-2": "Aller à l'étape 2",
"limit-the-amount-of-voters-per-option": "Limiter le nombre de votant·e·s par option",
"more-informations-here": "Plus d'informations ici :",
"only-the-poll-maker-can-see-the-poll-results": "Seul·e le ou la créateur·rice du sondage peut voir les résultats",
"optional-parameters": "Paramètres facultatifs",
"Permissions": "Permissions",
"poll-creation-1-of-3": "Création de sondage (1 sur 3)",
"poll-link": "Lien du sondage",
"poll-title": "Titre du sondage",
"receive-an-email-for-each-new-comment": "Recevoir un courriel à chaque commentaire",
"receive-an-email-for-each-new-vote": "Recevoir un courriel à chaque participation",
"required-fields-cannot-be-left-blank": "Merci de remplir les champs obligatoires, marqués d'une *.",
"the-identifier-can-contain-letters-numbers-and-dashes": "(peut contenir des lettres, des chiffres et des tirets \"-\")",
"the-results-are-publicly-visible": "Les résultats sont visibles sans mot de passe",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Afin de rendre le descriptif de ce sondage plus attractif, vous pouvez utiliser le formatage Markdown.",
"use-a-password-to-restrict-access": "Restreindre l'accès au sondage par mot de passe",
"value-max": "Valeur Maximale",
"voters-can-modify-their-own-vote-themselves": "Chaque sondé·e peut modifier son propre vote",
"votes-cannot-be-modified": "Aucun vote ne peut être modifié",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Attention : tout le monde pourra accéder aux courriels des votants car tout le monde peut éditer chaque vote. Vous devriez restreindre les règles de permission.",
"you-are-in-the-poll-creation-section": "Vous avez choisi de créer un nouveau sondage.",
"you-can-enable-or-disable-the-editor-at-will": "Vous pouvez activer ou désactiver l'éditeur à votre guise.",
"votes-per-option": "votes par choix",
"go-to-step-3": "Aller à létape 3",
"return-to-step-1": "Revenir à létape 1",
"add-a-choice": "Ajouter un choix",
"add-a-link-or-an-image": "Ajouter un lien ou une image",
"alternative-text": "Texte alternatif",
"links-or-images-can-be-included-using": "Il est possible dinsérer des liens ou des images en utilisant",
"markdown-syntax": "la syntaxe Markdown",
"poll-options-2-of-3": "Choix des sujets (2 sur 3)",
"remove-a-choice": "Supprimer le dernier choix",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Ces champs sont facultatifs. Vous pouvez ajouter un lien, une image ou les deux.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Pour créer un sondage classique, vous devez proposer au moins deux choix différents.",
"url-of-the-image": "URL de l'image",
"you-can-add-or-remove-choices-with-the-buttons": "Vous pouvez ajouter ou supprimer des choix supplémentaires avec les boutons",
"add-a-day": "Ajouter un jour",
"add-a-time-slot": "Ajouter un horaire",
"choose-dates-for-your-poll": "Choisissez les dates de votre sondage",
"copy-times-from-the-first-day": "Reporter les horaires du premier jour sur les autres jours",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Pour chacun des jours sélectionnés, vous avez la possibilité de choisir ou non, des heures de réunion (par exemple : \"8h\", \"8:30\", \"8h-10h\", \"soir\", etc.)",
"poll-dates-2-of-3": "Choix des dates (2 sur 3)",
"remove-a-day": "Supprimer le dernier jour",
"remove-a-time-slot": "Supprimer le dernier horaire",
"remove-all-days": "Effacer tous les jours",
"remove-all-times": "Effacer tous les horaires",
"remove-this-day": "Supprimer ce jour",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Pour créer un sondage spécial dates vous devez proposer au moins deux choix (deux horaires pour une même journée ou deux jours).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Vous pouvez ajouter ou supprimer des jours et horaires supplémentaires avec les boutons",
"back-to-step-2": "Revenir à létape 2",
"confirm-the-creation-of-your-poll": "Confirmez la création de votre sondage",
"create-the-poll": "Créer le sondage",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Date d'archivage :",
"list-of-options": "Liste de vos choix",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Une fois que vous aurez confirmé la création du sondage, vous serez redirigé·e automatiquement vers la page d'administration de votre sondage.",
"removal-date-and-confirmation-3-of-3": "Date d'expiration et confirmation (3 sur 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "En même temps, vous recevrez deux courriels : l'un contenant le lien vers votre sondage pour le faire suivre aux futur·e·s sondé·e·s, l'autre contenant le lien vers la page d'administration du sondage.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Vous pouvez décider d'une date d'archivage plus proche.",
"your-poll-will-automatically-be-archived": "Votre sondage sera automatiquement archivé",
"your-poll-will-be-automatically-archived-in-x-days": "Votre sondage sera automatiquement archivé dans %d jours.",
"after-the-last-date-of-your-poll": "après le dernier jour de votre sondage.",
"version-x": "Version %s",
"add-a-column": "Ajouter une colonne",
"adding-a-column": "Ajout de colonne",
"all-comments-deleted": "Tous les commentaires ont été supprimés",
"all-votes-deleted": "Tous les votes ont été supprimés",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "En tant qu'administrateur·rice, vous pouvez modifier toutes les lignes de ce sondage avec ce bouton",
"back-to-the-poll": "Retour au sondage",
"choice-added": "Choix ajouté",
"collect-the-emails-of-the-polled-users-for-the-choice": "Collecter les courriels des utilisateurs pour ce choix",
"column-deleted": "Colonne supprimée",
"comment-deleted": "Commentaire supprimé",
"confirm-removal-of-all-comments": "Confirmer la suppression de tous les commentaires de ce sondage",
"confirm-removal-of-all-votes": "Confirmer la suppression de tous les votes de ce sondage",
"confirm-removal-of-the-column": "Confirmer la suppression de cette colonne.",
"confirm-removal-of-your-poll": "Confirmer la suppression du sondage",
"delete-poll": "Supprimer le sondage",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Vous pouvez enfin également modifier les informations relatives à ce sondage comme le titre, les commentaires ou encore votre courriel.",
"keep-comments": "Garder les commentaires",
"keep-the-comments": "Garder les commentaires",
"keep-the-poll": "Je garde le sondage",
"keep-the-votes": "Garder les votes",
"keep-this-poll": "Garder ce sondage",
"keep-votes": "Garder les votes",
"poll-fully-deleted": "Sondage complètement supprimé",
"poll-saved": "Sondage sauvegardé",
"remove-column": "Effacer la colonne",
"remove-the-comments": "Supprimer les commentaires",
"remove-the-votes": "Supprimer les votes",
"the-poll-was-created": "Le sondage a été créé",
"vote-added": "Vote ajouté",
"vote-deleted": "Vote supprimé",
"vote-updated": "Vote mis à jour",
"you-can-add-a-new-scheduling-date-to-your-poll": "Vous pouvez ajouter une date à votre sondage.",
"your-poll-has-been-removed": "Votre sondage a été supprimé !",
"and-add-a-new-column-with": "et si vous avez oublié de saisir un choix, vous pouvez rajouter une colonne en cliquant sur",
"remove-a-column-or-a-line-with": "effacer une colonne ou une ligne avec",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Si nécessaire » pour cette option ont laissé les courriels suivants :",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Non » pour cette option ont laissé les courriels suivants :",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Les utilisateurs qui ont voté « Oui » pour cette option ont laissé les courriels suivants :",
"deletion-date": "Date de suppression :",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Pour participer à ce sondage, veuillez entrer votre nom, choisir toutes les valeurs qui vous conviennent et valider votre choix avec le bouton en bout de ligne.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "L'administrateur·rice a verrouillé ce sondage. Les votes et commentaires sont gelés, il n'est plus possible de participer",
"the-poll-has-expired-it-will-soon-be-deleted": "Le sondage a expiré, il sera bientôt supprimé.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Votre vote a bien été pris en compte, mais faites attention : ce sondage n'autorise l'édition de votre vote qu'avec le lien personnalisé suivant ; conservez-le précieusement !"
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Cree unha enquisa",
"define-dates-or-subjects-to-choose-from": "Defina as datas ou os temas a escoller",
"discuss-and-make-a-decision": "Discutir e tomar unha decisión",
"do-you-want-to": "Quere",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate é un servizo en liña que permite planificar unha xuntanza ou tomar decisións rapidamente e de xeito sinxelo. Non é necesario rexistrarse.",
"here-is-how-it-works": "Velaquí como funciona:",
"send-the-poll-link-to-your-friends-or-colleagues": "Enviar a ligazón da enquisa aos seus amigos ou compañeiros",
"what-is-framadate": "De que se trata?",
"view-an-example": "ver un exemplo?",
"cecill-b-license": "Licenza CeCILL-B",
"framadate-is-licensed-under-the": "Framadate está licenciado baixo a",
"framadate-was-initially-based-on": "Inicialmente Framadate foi baseado en",
"the-software": "O software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Este software require activar JavaScript e o rastro (cookies) activado. É compatíbel cos seguintes navegadores:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un software desenvolvido pola Universidade de Estrasburgo. Agora, o seu desenvolvemento é realizado pola asociación Framasoft.",
"grow-your-own": "Cultive o seu xardín",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Se quere instalar o software para o seu propio uso e así aumentar a súa independencia, podemos axudarlle a:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Para participar no desenvolvemento de software, suxerir melloras ou simplemente descargalo, visite",
"the-development-site": "a páxina de desenvolvemento",
"Actions": "Accións",
"Administration": "Administración",
"Author": "Autor",
"back-to-administration": "Volver á administración",
"change-the-poll": "Cambiar a enquisa",
"Email": "Correo",
"Executed": "Executado",
"expiry-date": "Data de caducidade",
"Fail": "Fallo",
"failed": "Fallou:",
"Format": "Formato",
"Installation": "Instalación",
"Logs": "Rexistros",
"Migration": "Migración",
"Nothing": "Nada",
"pages": "Páxinas:",
"poll-id": "ID da enquisa",
"poll-deleted": "Enquisa eliminada",
"Polls": "Enquisas",
"Purge": "Purga",
"purge-the-polls": "Purgar as enquisas",
"purged": "Purgadas:",
"see-the-poll": "Ver a enquisa",
"skipped": "Omitidas:",
"Status": "Estado",
"succeeded": "Con éxito:",
"Success": "Éxito",
"Summary": "Resumo",
"Title": "Título",
"Votes": "Votos",
"Waiting": "Agardando",
"polls-in-the-database-at-this-time": "enquisas na base de datos neste momento",
"check-again": "Volver verificar",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Considere activar a extensión OpenSSL de PHP para mellorar a seguridade.",
"consider-setting-the-date-timezone-in-php-ini": "Considere estabelecer o valor de «date.timezone» en php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Considere estabelecer «session.cookie_httponly = 1» no ficheiro php.ini ou engada «php_value session.cookie_httponly1 » no ficheiro «.htaccess» para que as cookies non sexan accesíbeis dende Javascript.",
"continue-the-installation": "Continuar coa instalación",
"cookies-are-served-from-http-only": "As cookies sérvense exclusivamente con HTTP.",
"installation-checking": "Verificación da instalación",
"openssl-extension-loaded": "Extensión OpenSSL cargada.",
"php-intl-extension-is-enabled": "Extensión PHP Intl cargada.",
"php-version-x-is-enough-needed-at-least-php-x": "A versión %s de PHP é abondo (Requírese polo menos %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "O directorio do ficheiro de configuración (%s) non ten permisos de escritura e non existe o ficheiro (%s).",
"the-config-file-directory-x-is-writable": "O directorio do ficheiro de configuración (%s) ten permisos de escritura.",
"the-config-file-exists": "O ficheiro de configuración xa existe.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "O directorio de compilación de modelos (%s) non existe en «%s». Tente de novo o proceso de instalación.",
"the-template-compile-directory-x-is-not-writable": "O directorio de compilación de modelos (%s) non ten permisos de escritura.",
"the-template-compile-directory-x-is-writable": "O directorio de compilación de modelos (%s) ten permisos de escritura.",
"you-need-to-enable-the-php-intl-extension": "É necesario que active a extensión Intl de PHP.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "A versión de PHP (%s) é moi antiga. Esta aplicación necesita polo menos a versión %s de PHP.",
"date-timezone-is-set": "date.timezone está estabelecido.",
"add-a-comment-to-the-poll": "Engadir un comentario na enquisa",
"Comment": "Comentario",
"comment-saved": "Gardouse o comentario",
"Comments": "Comentarios",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Escriba o seu nome e o seu comentario antes de enviar o formulario",
"remove-comment": "Retirar o comentario",
"submit-comment": "Enviar o comentario",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A, %e de %B de %Y",
"b-y": "%B de %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d/%m/%Y %H:%M",
"add-range-dates": "Engadir intervalo de datas",
"end-date": "Data final",
"start-date": "Data de inicio",
"Y-m-d": "Y-m-d",
"you-can-select-at-most-4-months": "Pode seleccionar como máximo 4 meses",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "dd/mm/yyyy",
"edit-link-for-poll-x": "Ligazón para editar a enquisa «%s»",
"here-is-the-link-for-editing-your-vote": "Esta é a ligazón para editar o seu voto:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Se non quere perder a súa ligazón personalizada, podemos enviárllela por correo electrónico.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Agarde %d segundos antes de que poidamos enviar un correo e após tenteo de novo.",
"REMINDER": "RECORDATORIO",
"Send": "Enviar",
"the-email-address-is-not-correct": "O enderezo de correo non é correcto.",
"your-reminder-has-been-successfully-sent": "O seu recordatorio foille enviado correctamente!",
"adding-vote-failed": "Produciuse un fallo ao engadir o voto",
"cant-create-an-empty-column": "Non é posíbel crear una columna baleira.",
"cant-create-the-config-php-file-in-x": "Non é posíbel crear o ficheiro config.php en «%s».",
"comment-failed": "Produciuse un fallo ao crear o comentario",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "As cookies están desactivadas no seu navegador. É necesario que as teña activadas para poder crear unha enquisa.",
"enter-a-name": "Introduza un nome",
"enter-a-name-and-a-comment": "Introduza un nome e un comentario!",
"enter-a-title": "Introduza un título",
"enter-an-email-address": "Introduza un enderezo de correo",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Hai un erro no límite de votos: O valor debe ser un enteiro maior que 0 (cero)",
"error": "Erro!",
"failed-to-delete-all-comments": "Produciuse un fallo ao eliminar comentarios",
"failed-to-delete-all-votes": "Produciuse un fallo ao eliminar todos os votos",
"failed-to-delete-column": "Produciuse un fallo ao eliminar a columna",
"failed-to-delete-the-comment": "Produciuse un fallo ao eliminar o comentario",
"failed-to-delete-the-poll": "Produciuse un fallo ao eliminar a enquisa",
"failed-to-delete-the-vote": "Produciuse un fallo ao eliminar o voto!",
"failed-to-insert-the-comment": "Produciuse un fallo ao inserir o comentario!",
"failed-to-save-poll": "Produciuse un fallo ao gardar a enquisa",
"forbidden": "Prohibido!",
"GenericErrorPollCreation": "ErroXenericoCreacionEnquisa",
"identifier-is-already-used": "O identificador xa está en uso",
"if-you-quit-now-your-changes-will-be-lost": "Se sae agora, perderanse as súas modificacións.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Javascript esta desactivado no seu navegador. É necesario que o active para crear una enquisa.",
"missing-values": "Faltan valores",
"no-polls-found": "Non se atopan enquisas",
"password-is-empty": "O contrasinal está baleiro.",
"passwords-do-not-match": "Os contrasinais non coinciden.",
"poll-has-been-updated-before-you-vote": "A enquisa actualizouse antes de votar",
"something-has-gone-wrong": "Algo foi mal...",
"something-is-wrong-with-the-format": "Algo está mal no formato",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Algo está mal no formato: as URL personalizadas deberían estar formadas só por caracteres alfanuméricos e guións.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Algo está mal no formato: o nome non debería ter ningún espazo antes nin despois",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "O enderezo non é correcto. Debe introducir un enderezo de correo electrónico válido (como por exemplo r.stallman@outlock.com) para recibir a ligazón á súa enquisa.",
"the-column-already-exists": "A columna xa existe",
"the-name-is-invalid": "O nome é incorrecto.",
"the-name-youve-chosen-already-exists-in-this-poll": "O nome elixido xa existe nesta enquisa!",
"there-is-a-problem-with-your-choices": "Hai un problema coas súas escollas",
"this-identifier-is-not-allowed": "Este identificador non está permitido",
"this-poll-doesnt-exist": "Esta enquisa non existe!",
"unable-to-connect-to-database": "Non é posíbel conectar coa base de datos",
"update-vote-failed": "Produciuse un erro ao actualizar o voto",
"you-already-voted": "Xa votou",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Non pode crear unha enquisa con resultados ocultos coa seguinte opción: ",
"you-cant-select-more-than-x-dates": "Non pode seleccionar máis de %d datas",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Non encheu a primeira sección da creación da enquisa ou a súa sesión caducou.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "O seu voto non foi contado, porque neste preciso momento alguén votou e as súas escollas entran en conflito cas condicións da enquisa. Volva intentalo.",
"Address": "Enderezo",
"created-polls": "Creouse a enquisa",
"have-a-good-day": "Que teña un bo día!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Velaquí a lista de enquisas que pode xestionar en %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Se non foi a fonte desta acción e se cre que se trata dun abuso do servizo, avise ao administrador en %s.",
"its-address": "É o seu enderezo",
"last-access-date": "Data de último acceso",
"list-of-your-polls": "Listaxe das súas enquisas",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "P. D.: este correo electrónico foi enviado porque vostede - ou alguén máis - pediu que devolva as enquisas creadas co seu enderezo de correo electrónico.",
"polls-saved-inside-this-browser": "Enquisas gardadas neste navegador",
"polls-sent": "Enquisas enviadas",
"remove-all-my-polls-from-this-browsers-index": "Elimina todas as miñas enquisas do índice deste navegador",
"remove-poll-from-index": "Eliminar as enquisas do índice",
"send-me-my-polls": "Enviarme as miñas enquisas",
"send-my-polls-by-email": "Enviar as miñas enquisas por correo electrónico",
"the-date-you-created-or-last-accessed-the-poll": "A data na que creou ou accedeu á última enquisa",
"the-title-of-the-poll": "O título da enquisa",
"there-are-no-polls-saved-inside-your-browser-yet": "Aínda non hai enquisas gardadas no seu navegador",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Para eliminar estes datos, prema no lixo na liña correspondente ou prema na opción \"Eliminar o meu índice de enquisas\". Isto non eliminará as súas enquisas.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Para axudarlle a atopar as enquisas anteriores, gardamos cada enquisa que crea ou accede desde o seu navegador. Estes datos gárdanse só neste navegador. Gardaranse os seguintes datos:",
"visited-polls": "Enquisas visitadas",
"in-the-format-name-mail-com": "(co formato nome@correo.com)",
"Add": "Engadir",
"Back": "Volver",
"back-to-the-homepage-of": "Volver á páxina de inicio de",
"Cancel": "Cancelar",
"Choice": "Escolla",
"Classic": "Clásica",
"Close": "Pechar",
"create-your-own-polls": "Crear as súas propias enquisas",
"creation-date": "Data de creación:",
"Date": "Data",
"Day": "Día",
"Description": "Descrición",
"Edit": "Modificar",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate é un servizo en liña para a planificación de citas ou tomar decisións rápida e doadamente.",
"Home": "Inicio",
"Information": "Información",
"legend": "Lenda:",
"Link": "Ligazón",
"Markdown": "Markdown",
"Next": "Seguinte",
"No": "Non",
"page-generated-in": "A páxina xerouse en",
"Poll": "Enquisa",
"Remove": "Borrar",
"Save": "Gardar",
"Search": "Buscar",
"Time": "Hora",
"under-reserve": "Baixo reserva",
"Validate": "Validar",
"Yes": "Si",
"your-email-address": "Seu enderezo de correo electrónico",
"your-name": "Seu nome",
"days": "días",
"for": "para",
"months": "meses",
"seconds": "segundos",
"vote": "voto",
"votes": "votos",
"with": "con",
"make-a-standard-poll": "Facer unha enquisa estándar",
"schedule-an-event": "Programar unha enquisa",
"where-are-my-polls": "Onde están as miñas enquisas?",
"administrator-mail-address": "Enderezo de correo electrónico da persoa administradora",
"application-name": "Nome da aplicación",
"clean-url": "URL limpo",
"database-driver": "Controlador da base de datos",
"database-hostname": "Servidor da base de datos",
"database-name": "Nome da base de datos",
"database-port": "Porto da base de datos",
"default-language": "Idioma predeterminado",
"General": "Xeral",
"Install": "Instalar",
"migration-table": "Táboa de migración",
"Password": "Contrasinal",
"Prefix": "Prefixo",
"respond-to-mail-address": "Correo electrónico para as respostas",
"User": "Persoa usuaria",
"change-language": "Mudar idioma",
"select-language": "Escoller idioma",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "«A estrada é longa, máis o camiño é libre ...»<br/>Framasoft vive só das túas doazóns.<br/>Grazas anticipadamente polo teu apoio https://soutenir.framasoft.org",
"message-for-the-author": "Mensaxe para o autor",
"notification-of-poll-x": "Notificación da enquisa: %s",
"participant-link": "Ligazón de participación",
"poll-participation-x": "Participación na enquisa: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Alguén acaba de mudar a súa enquisa na seguinte ligazón <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Alguén acaba de borrar a súa enquisa «%s».",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Grazas por participar na enquisa na seguinte ligazón",
"thank-you-for-your-trust": "Grazas pola súa confianza.",
"this-is-the-message-to-forward-to-the-poll-participants": "Esta é a mensaxe a reenviar as persoas participantes na enquisa.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Non se puido enviar a mensaxe aos participantes da enquisa. Debería mantelo privado. <br/><br/>Pode modificar a súa enquisa na seguinte ligazón",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "engadiuse un voto.<br/>Pode visitar súa enquisa na seguinte ligazón",
"has-just-created-a-poll-called": "acaba de crear unha enquisa chamada",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "actualizouse un voto.<br/>Pode visitar súa enquisa na ligazón",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "escribiuse un comentario.<br/>Pode visitar a súa enquisa na ligazón",
"thank-you-for-your-understanding": "Grazas pola súa compresión.",
"the-application": "A aplicación",
"is-currently-under-maintenance": "neste intre está en mantemento.",
"submit-access": "Enviar acceso",
"wrong-password": "O contrasinal é incorrecto",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Ten que fornecer un contrasinal para poder participar na enquisa.",
"you-have-to-provide-a-password-to-access-the-poll": "Ten que fornecer un contrasinal para poder acceder á enquisa.",
"x-option": "a opción %s",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Calquera pode ver o seu enderezo de correo electrónico despois de votar",
"best-choice": "A mellor escolla",
"best-choices": "Mellores escollas",
"Chart": "Gráfica",
"display-the-chart-of-the-results": "Amosar a gráfica de resultados",
"edit-line-x": "Modificar a liña: %s",
"link-to-edit-this-particular-line": "Ligazón para modificar esta liña",
"remove-line": "Borrar a liña:",
"save-choices": "Gardar escollas",
"scroll-to-the-left": "Desprazarse até o final",
"scroll-to-the-right": "Desprazarse cada a dereita",
"the-current-best-choice-is": "Actualmente a mellor escolla é:",
"the-current-best-choices-are": "Actualmente as mellores escollas son:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "A ligazón para modificar esta liña copiouse ó portapapeis!",
"Total": "Total",
"vote-no-for": "Votos «non» para",
"vote-yes-for": "Vote «si» para",
"votes-under-reserve-for": "Votos reservados para",
"polled-user": "usuario enquisado",
"polled-users": "usuarios enquisados",
"admin-link-for-the-poll": "Ligazón de administración para a enquisa",
"cancel-the-description-edit": "Cancelar a modificación da descrición",
"cancel-the-email-address-edit": "Cancelar a modificación do correo electrónico",
"cancel-the-expiration-date-edit": "Cancelar a modificación da data de caducidade",
"cancel-the-name-edit": "Cancelar a modificación do nome",
"cancel-the-rules-edit": "Cancelar a modificación das regras",
"cancel-the-title-edit": "Cancelar a modificación do título",
"creator-of-the-poll": "Creador da enquisa",
"edit-name": "Modificar o nome",
"edit-the-description": "Modificar a descrición",
"edit-the-email-address": "Modificar o enderezo de correo electrónico",
"edit-the-expiry-date": "Modificar a data de caducidade",
"edit-the-poll-rules": "Modificar as regras da enquisa",
"edit-title": "Modificar o título",
"export-to-csv": "Exportar a CSV",
"no-password": "Sen contrasinal",
"only-votes-are-protected": "Só se protexen os votos",
"password-protected": "O contrasinal está protexido",
"poll-rules": "Regras da enquisa",
"Print": "Imprimir",
"public-link-to-the-poll": "Ligazón pública da enquisa",
"remove-all-comments": "Borrar todos os comentarios",
"remove-all-votes": "Borrar todos os votos",
"remove-password": "Borrar o contrasinal",
"remove-the-poll": "Borrar a enquisa",
"results-are-hidden": "Os resultados son agochados",
"results-are-visible": "Os resultados son visibles",
"rich-editor": "Editor de texto enriquecido",
"save-the-description": "Gardar a descrición",
"save-the-email-address": "Gardar o enderezo de correo electrónico",
"save-the-new-expiration-date": "Gardar a nova data de caducidade",
"save-the-new-name": "Gardar o novo nome",
"save-the-new-rules": "Gardar as novas regras",
"save-the-new-title": "Gardar o novo título",
"simple-editor": "Editor de texto simple",
"title-of-the-poll": "Título da enquisa",
"voters-email-addresses-are-collected": "Os enderezos de correo electrónico das persoas votantes son recollidos",
"voters-email-addresses-are-collected-and-required": "Os enderezos de correo electrónico das persoas votantes son recollidos e son requiridos",
"voters-email-addresses-are-collected-required-and-verified": "Os enderezos de correo electrónico das persoas votantes son recollidos, requiridos e verificados",
"voters-email-addresses-are-not-collected": "Os enderezos de correo electrónico das persoas votantes non son recollidos",
"votes-and-comments-are-locked": "Os votos e os comentarios están bloqueados",
"votes-protected-by-password": "Os votos están protexidos por contrasinal",
"all-voters-can-modify-any-vote": "As persoas votantes poden modificar calquera voto",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Ao definir un identificador pode facilitar o acceso á enquisa a persoas non desexadas. Neste caso recoméndase protexela cun contrasinal.",
"collect-voters-email-addresses": "Recoller os enderezos de correo electrónico das persoas votantes",
"Confirmation": "Confirmación",
"customize-the-url": "Personalizar o URL",
"email-addresses-are-collected-but-not-required": "Recóllense os enderezos de correo electrónico máis non son obrigatorios",
"email-addresses-are-not-collected": "Non se recollen os enderezos de correo electrónico",
"email-addresses-are-required": "Os enderezos de correo electrónico son obrigatorios",
"email-addresses-are-required-and-verified": "Os enderezos de correo electrónico son obrigatorios xunto coa súa verificación",
"go-to-step-2": "Ir ao paso 2",
"limit-the-amount-of-voters-per-option": "Limitar a cantidade de votos por opción",
"more-informations-here": "Máis información aquí:",
"only-the-poll-maker-can-see-the-poll-results": "Só pode ver os resultados a persoa que creou a enquisa",
"optional-parameters": "Parámetros opcionais",
"Permissions": "Permisos",
"poll-creation-1-of-3": "Creación da enquisa (1 de 3)",
"poll-link": "Ligazón da enquisa",
"poll-title": "Título da enquisa",
"receive-an-email-for-each-new-comment": "Recibir un correo electrónico por cada novo comentario",
"receive-an-email-for-each-new-vote": "Recibir un correo electrónico por cada novo voto",
"required-fields-cannot-be-left-blank": "Os campos obrigatorios non poden deixarse en branco.",
"the-identifier-can-contain-letters-numbers-and-dashes": "O identificador pode conter letras, número e guións «-».",
"the-results-are-publicly-visible": "Os resultados son visibles sen contrasinal",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Para facer a descrición máis atractiva, pode usar o formato Markdown.",
"use-a-password-to-restrict-access": "Empregar un contrasinal para restrinxir o acceso",
"value-max": "Valor máximo",
"voters-can-modify-their-own-vote-themselves": "As persoas votantes poden modificar seus votos",
"votes-cannot-be-modified": "Os votos non se poden modificar",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Aviso: calquera pode ver os enderezos de correo electrónico das persoas enquisadas xa que todas poden modificar calquera voto. Debería restrinxir as regras de acceso.",
"you-are-in-the-poll-creation-section": "Está na sección de creación da enquisa.",
"you-can-enable-or-disable-the-editor-at-will": "Pode activar ou desactivar o editor a vontade.",
"votes-per-option": "votos por opción",
"go-to-step-3": "Ir ao paso 3",
"return-to-step-1": "Volver ao paso 1",
"add-a-choice": "Engadir unha opción",
"add-a-link-or-an-image": "Engadir unha ligazón ou unha imaxe",
"alternative-text": "Texto alternativo",
"links-or-images-can-be-included-using": "Poden engadirse imaxes ou textos empregando",
"markdown-syntax": "Sintaxe Markdown",
"poll-options-2-of-3": "Opcións da enquisa (2 de 3)",
"remove-a-choice": "Borrar unha opción",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Estes campos son opcionais. Pode engadir unha ligazón, unha imaxe ou ambas.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Para crear unha enquisa debería fornecer polo menos dúas opcións diferentes.",
"url-of-the-image": "URL da imaxe",
"you-can-add-or-remove-choices-with-the-buttons": "Pode engadir ou borrar opcións cos botóns",
"add-a-day": "Engadir un día",
"add-a-time-slot": "Engadir horas",
"choose-dates-for-your-poll": "Escolla as datas da a súa enquisa",
"copy-times-from-the-first-day": "Copiar as horas do primeiro día",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "A cada día seleccionado, pode engadirlle horas (por exemplo «8 horas», «8:30», «8 horas - 10 horas», «noite», etc.)",
"poll-dates-2-of-3": "Datas da enquisa (2 de 3)",
"remove-a-day": "Borrar un día",
"remove-a-time-slot": "Borrar unha hora",
"remove-all-days": "Borrar todos os días",
"remove-all-times": "Borrar todas as horas",
"remove-this-day": "Borrar este día",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Para programar unha enquisa, precisa fornecer polo menos dúas opcións (por exemplo, dúas horas nun día ou dous días).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Cos botóns pode engadir ou borrar días e horas adicionais",
"back-to-step-2": "Volver ó paso 2",
"confirm-the-creation-of-your-poll": "Confirme a creación da súa enquisa",
"create-the-poll": "Crear a enquisa",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Data de caducidade:",
"list-of-options": "Lista de opcións",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Unha vez que confirme a creación da súa enquisa será redirixido automaticamente á páxina de administración da enquisa.",
"removal-date-and-confirmation-3-of-3": "Borrar a data e confirmar (3 de 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Despois recibirá dous correos electrónicos: un que contén a ligazón da súa enquisa para o envío as persoas participantes, o outro que contén a ligazón á páxina de administración da enquisa.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Pode indicar unha data de caducidade específica para a enquisa.",
"your-poll-will-automatically-be-archived": "A súa enquisa será arquivada de xeito automático",
"your-poll-will-be-automatically-archived-in-x-days": "A súa enquisa será arquivada de xeito automático en %d días.",
"after-the-last-date-of-your-poll": "despois da última data da súa enquisa.",
"version-x": "Versión %s",
"add-a-column": "Engadir unha columna",
"adding-a-column": "Engadindo unha columna",
"all-comments-deleted": "Elimináronse todos os comentarios",
"all-votes-deleted": "Elimináronse todos os votos",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Como persoa administradora, pode mudar todas as liñas desta enquisa con este botón",
"back-to-the-poll": "Volver á enquisa",
"choice-added": "Engadiuse unha opción",
"collect-the-emails-of-the-polled-users-for-the-choice": "Recoller os correos electrónicos dos usuarios enquisados para a escolla",
"column-deleted": "Eliminouse a columna",
"comment-deleted": "Eliminouse o comentario",
"confirm-removal-of-all-comments": "Confirme que quere borrar todos os comentarios",
"confirm-removal-of-all-votes": "Confirme que quere borrar todos os votos",
"confirm-removal-of-the-column": "Confirme que quere borrar a columna.",
"confirm-removal-of-your-poll": "Confirme que quere borrar a súa enquisa",
"delete-poll": "Eliminar a enquisa",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Finalmente, pode mudar as propiedades desta enquisa como o título, os comentarios ou o seu enderezo de correo electrónico.",
"keep-comments": "Conservar os comentarios",
"keep-the-comments": "Conservar os comentarios",
"keep-the-poll": "Conservar a enquisa",
"keep-the-votes": "Conservar os votos",
"keep-this-poll": "Conservar esta enquisa",
"keep-votes": "Conservar os votos",
"poll-fully-deleted": "A enquisa eliminouse completamente",
"poll-saved": "A enquisa foi gardada",
"remove-column": "Borrar columna",
"remove-the-comments": "Borrar os comentarios",
"remove-the-votes": "Borrar os votos",
"the-poll-was-created": "Creouse a enquisa.",
"vote-added": "Engadiuse o voto",
"vote-deleted": "Eliminouse o voto",
"vote-updated": "Actualizouse o voto",
"you-can-add-a-new-scheduling-date-to-your-poll": "Pode engadir unha nova data a súa enquisa.",
"your-poll-has-been-removed": "A súa enquisa foi borrada!",
"and-add-a-new-column-with": "e engadir unha nova columna con",
"remove-a-column-or-a-line-with": "borrar unha columna ou unha liña con",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Os usuarios que votaron «Se é preciso» nesta opción deixaron o enderezo de correo electrónico:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "As persoas que votaron nesta opción «Non» deixaron os enderezos de correo electrónico:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "As persoas que votaron nesta opción «Si» deixaron os enderezos de correo electrónico:",
"deletion-date": "Data de borrado:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Se quere votar nesta enquisa, ten que fornecer o seu nome, marcar a súa escolla, e enviala seleccionando o botón gardar ao final da liña.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Esta enquisa foi bloqueada pola persoa a cargo da administración. Os votos e comentarios están bloqueados, non se pode participar",
"the-poll-has-expired-it-will-soon-be-deleted": "A enquisa caducou, proximamente será eliminada.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "O seu voto gardouse, pero teña en conta que ten que gardar esta ligazón personalizada para poder modificar o seu voto."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Szavazás létrehozása",
"define-dates-or-subjects-to-choose-from": "Választható időpontok vagy témák megadása",
"discuss-and-make-a-decision": "Megbeszélés és döntéshozás",
"do-you-want-to": "Szeretne",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "A Framadate egy online szolgáltatás találkozók egyeztetésére vagy döntések gyors és egyszerű meghozására. Regisztráció nem szükséges.",
"here-is-how-it-works": "Így működik:",
"send-the-poll-link-to-your-friends-or-colleagues": "Szavazás elküldése ismerősöknek vagy kollégáknak",
"what-is-framadate": "Mi a Framadate?",
"view-an-example": "látni egy példát?",
"cecill-b-license": "CeCILL-B licenc",
"framadate-is-licensed-under-the": "A Framadate licence:",
"framadate-was-initially-based-on": "A Framadate eredetileg a következőn alapult:",
"the-software": "A szoftver a",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "A szoftverhez JavaScript és engedélyezett sütik szükségesek. A következő webböngészőkkel kompatibilis:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "szoftveren alapul, melyet a Strasbourg-i Egyetem fejlesztett. Manapság a Framasoft fejleszti.",
"grow-your-own": "Nevelje a sajátját",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Ha szeretné magának telepíteni a szoftvert saját használatra, ezzel is növelve a függetlenségét, akkor a következő oldalon kaphat ehhez segítséget:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "HA részt akar venni a fejlesztésben, fejlesztéseket akar javasolni, vagy csak letöltené, akkor látogasson el",
"the-development-site": "a fejlesztési oldalra",
"Actions": "Műveletek",
"Administration": "Adminisztráció",
"Author": "Szerző",
"back-to-administration": "Vissza az adminisztrációhoz",
"change-the-poll": "Szavazás módosítása",
"Email": "E-mail",
"Executed": "Végrehajtva",
"expiry-date": "Lejárati idő",
"Fail": "Sikertelen",
"failed": "Sikertelen:",
"Format": "Formátum",
"Installation": "Telepítés",
"Logs": "Naplók",
"Migration": "Áttelepítés",
"Nothing": "Semmi",
"pages": "Oldalak:",
"poll-id": "Szavazásazonosító",
"poll-deleted": "Szavazás törölve",
"Polls": "Szavazások",
"Purge": "Törlés",
"purge-the-polls": "Szavazások törlése",
"purged": "Törölve:",
"see-the-poll": "Szavazás megtekintése",
"skipped": "Kihagyva:",
"Status": "Állapot",
"succeeded": "Sikeres:",
"Success": "Sikeres",
"Summary": "Összegzés",
"Title": "Cím",
"Votes": "Szavazatok",
"Waiting": "Várakozás",
"polls-in-the-database-at-this-time": "szavazás van most az adatbázisban",
"check-again": "Újraellenőrzés",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Fontolja meg az OpenSSL PHP kiterjesztés engedélyezését a növelt biztonság érdekében.",
"consider-setting-the-date-timezone-in-php-ini": "Fontolja meg a data.timezone megadását a php.ini fájlban.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Fontolja meg a „session.cookie_httponly = 1” beállítását a php.ini fájlban, vagy adja hozzá a „php_value session.cookie_httponly 1” szöveget a .htaccess fájlhoz, hogy a sütiket ne lehessen Javascripten keresztül elérni.",
"continue-the-installation": "Telepítés folytatása",
"cookies-are-served-from-http-only": "A sütik csak HTTP felől kerülnek kiszolgálásra.",
"installation-checking": "Telepítés ellenőrzése",
"openssl-extension-loaded": "OpenSSL kiterjesztés betöltve.",
"php-intl-extension-is-enabled": "PHP Intl kiterjesztés engedélyezve.",
"php-version-x-is-enough-needed-at-least-php-x": "A PHP %s elégséges (legalább PHP %s szükséges).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "A konfigurációs fájl könyvtára (%s) nem írható, és a konfigurációs fájl (%s) nem létezik.",
"the-config-file-directory-x-is-writable": "A konfigurációs fájl könyvtára (%s) írható.",
"the-config-file-exists": "A konfigurációs fájl létezik.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "A sablonok fordítási könyvtára (%s) nem létezik itt: „%s”. Kezdd újra a telepítési folyamatot.",
"the-template-compile-directory-x-is-not-writable": "A sablonok fordítási könyvtára (%s) nem írható.",
"the-template-compile-directory-x-is-writable": "A sablonok fordítási könyvtára (%s) írható.",
"you-need-to-enable-the-php-intl-extension": "Engedélyeznie kell a PHP Intl kiterjesztést.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "A PHP %s túl régi. Az alkalmazáshoz legalább PHP %s szükséges.",
"date-timezone-is-set": "date.timezone beállítva.",
"add-a-comment-to-the-poll": "Hozzászólás hozzáadása a szavazáshoz",
"Comment": "Hozzászólás",
"comment-saved": "Hozzászólás mentve",
"Comments": "Hozzászólások",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Az űrlap elküldése előtt adja meg a nevét és hozzászólását",
"remove-comment": "Hozzászólás eltávolítása",
"submit-comment": "Hozzászólás beküldése",
"a-e-b-y": "%Y. %B %e., %A",
"a-b-e-y": "%Y. %B %e., %A",
"b-y": "%Y %B",
"y-m-x": "%Y.%m.%d.",
"a-e": "%e., %a",
"m-x-y-h-m": "%Y.%m.%d. %H:%M",
"add-range-dates": "Időintervallum hozzáadása",
"end-date": "Záró dátum",
"start-date": "Kezdő dátum",
"Y-m-d": "Y.m.d.",
"you-can-select-at-most-4-months": "Legfeljebb 4 hónapot válaszhat",
"yyyy-mm-dd": "yyyy.mm.dd.",
"yyyy-mm-dd-for-humans": "év.hónap.nap.",
"edit-link-for-poll-x": "A(z) „%s” szavazás hivatkozásának szerkesztése",
"here-is-the-link-for-editing-your-vote": "A szavazata szerkesztéséhez szükséges hivatkozás:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Ha szeretné, elküldhetjük e-mailben a személyre szabott hivatkozását.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Várjon %d másodpercet mielőtt elküldjük Önnek az e-mailt, aztán próbálja újra.",
"REMINDER": "EMLÉKEZTETŐ",
"Send": "Elküldés",
"the-email-address-is-not-correct": "Az e-mail cím helytelen.",
"your-reminder-has-been-successfully-sent": "Az emlékeztető sikeresen elküldve!",
"adding-vote-failed": "Szavazat hozzáadása sikertelen",
"cant-create-an-empty-column": "Üres oszlop nem hozható létre.",
"cant-create-the-config-php-file-in-x": "Nem hozható létre a config.php fájl itt: „%s”.",
"comment-failed": "Hozzászólás sikertelen",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "A sütik le vannak tiltva a böngészőjében. Engedélyezni kell őket a szavazás létrehozásához.",
"enter-a-name": "Adjon meg egy nevet",
"enter-a-name-and-a-comment": "Adjon meg egy nevet és egy hozzászólást.",
"enter-a-title": "Adjon meg egy címet",
"enter-an-email-address": "Adjon meg egy e-mail címet",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Hiba a szavazatszám korlátozásában: az értéknek 0-nál nagyobb egész számnak kell lennie",
"error": "Hiba.",
"failed-to-delete-all-comments": "Az összes hozzászólás törlése sikertelen",
"failed-to-delete-all-votes": "Az összes szavazat törlése sikertelen",
"failed-to-delete-column": "Oszlop törlése sikertelen",
"failed-to-delete-the-comment": "Hozzászólás törlése sikertelen",
"failed-to-delete-the-poll": "Szavazás törlése sikertelen",
"failed-to-delete-the-vote": "Szavazat törlése sikertelen.",
"failed-to-insert-the-comment": "Hozzászólás beszúrása sikertelen.",
"failed-to-save-poll": "A szavazás mentése sikertelen",
"forbidden": "Tiltott.",
"GenericErrorPollCreation": "Általános hiba a szavazás létrehozásakor",
"identifier-is-already-used": "Az azonosító már használatban van",
"if-you-quit-now-your-changes-will-be-lost": "Ha most kilép, a változásai elvesznek.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "A JavaScript le van tiltva a böngészőjében. Engedélyezni kell a szavazás létrehozásához.",
"missing-values": "Hiányzó értékek",
"no-polls-found": "A szavazás nem található",
"password-is-empty": "A jelszó üres.",
"passwords-do-not-match": "A jelszavak nem egyeznek.",
"poll-has-been-updated-before-you-vote": "A szavazás frissítve lett mielőtt szavazott volna",
"something-has-gone-wrong": "Valami hiba történt…",
"something-is-wrong-with-the-format": "Valami baj van a formátummal",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Valami baj van a formátummal: a személyre szabott URL csak alfanumerikus karaktereket és kötőjeleket tartalmazhat.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Valami baj van a formátummal: a név elején és végén nem lehetnek szóközök",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "A cím nem megfelelő. Érvényes e-mail címet kell megadjon (pl. r.stallman@outlock.com), hogy el tudjuk küldeni a szavazáshoz tartozó hivatkozást.",
"the-column-already-exists": "Az oszlop már létezik",
"the-name-is-invalid": "A név érvénytelen.",
"the-name-youve-chosen-already-exists-in-this-poll": "A választott név már szerepel ebben a szavazásban.",
"there-is-a-problem-with-your-choices": "Probléma van a választásaival",
"this-identifier-is-not-allowed": "Az azonosító nem engedélyezett",
"this-poll-doesnt-exist": "Ez a szavazás nem létezik.",
"unable-to-connect-to-database": "Nem sikerült csatlakozni az adatbázishoz",
"update-vote-failed": "Szavazat frissítése sikertelen",
"you-already-voted": "Már szavazott",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Nem hozhat létre rejtett eredményű szavazást a következő beállítással: ",
"you-cant-select-more-than-x-dates": "Nem választhat ki %d dátumnál többet",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Nem töltötte ki a szavazás létrehozásának első szakaszát, vagy lejárt a munkamenete.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "A szavazata nem lett beleszámítva, mert valaki időközben szavazott, és ez ütközik a választásaival és a szavazás feltételeivel. Próbálja újra.",
"Address": "Cím",
"created-polls": "Létrehozott szavazások",
"have-a-good-day": "Legyen szép napja!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Ez a szavazások listája, amit a %s alkalmazásban kezel:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Ha nem Ön volt, és úgy gondolja hogy ez visszaélés, akkor értesítse az adminisztrátort a(z) %s e-email címen.",
"its-address": "A címe",
"last-access-date": "Legutóbbi elérés ideje",
"list-of-your-polls": "Szavazásai listája",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "UI: ez az e-mail azért lett elküldve, mert Ön vagy valaki más kérte az erről az e-email címről létrehozott szavazások listáját.",
"polls-saved-inside-this-browser": "Az ebben a böngészőben mentett szavazások",
"polls-sent": "Szavazások listája elküldve",
"remove-all-my-polls-from-this-browsers-index": "Az összes szavazás eltávolítása a böngésző indexéből",
"remove-poll-from-index": "Szavazás eltávolítása az indexből",
"send-me-my-polls": "Szavazások elküldése",
"send-my-polls-by-email": "Szavazások elküldése e-mailben",
"the-date-you-created-or-last-accessed-the-poll": "Az időpont, amikor létrehozta vagy legutóbb elérte a szavazást",
"the-title-of-the-poll": "A szavazás címe",
"there-are-no-polls-saved-inside-your-browser-yet": "Még nincsenek szavazások mentve a böngészőjében",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Az adatok törléséhez kattintson a kuka ikonra a megfelelő sorban, vagy kattintson a „szavazások indexének törlése” lehetőségre. Ez nem törli a szavazásait.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Hogy segítsünk megtalálni az előző szavazásait, minden szavazást elmentünk a böngészőjében. Ez az adat csak a böngészőben kerül mentése. A következő adatokról van szó:",
"visited-polls": "Meglátogatott szavazások",
"in-the-format-name-mail-com": "(name@mail.com formátumban)",
"Add": "Hozzáadás",
"Back": "Vissza",
"back-to-the-homepage-of": "Vissza a következő weboldalra:",
"Cancel": "Mégse",
"Choice": "Lehetőség",
"Classic": "Klasszikus",
"Close": "Bezárás",
"create-your-own-polls": "Hozza létre a saját szavazásait",
"creation-date": "Létrehozási idő:",
"Date": "Dátum",
"Day": "Nap",
"Description": "Leírás",
"Edit": "Szerkesztés",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "A Framadate egy online szolgáltatás találkozó tervezéséhez vagy gyors és könnyű döntéshozáshoz.",
"Home": "Kezdőlap",
"Information": "Információ",
"legend": "Jelmagyarázat:",
"Link": "Hivatkozás",
"Markdown": "Markdown",
"Next": "Következő",
"No": "Nem",
"page-generated-in": "Az oldal előállítva:",
"Poll": "Szavazás",
"Remove": "Eltávolítás",
"Save": "Mentés",
"Search": "Keresés",
"Time": "Idő",
"under-reserve": "Feltételes",
"Validate": "Érvényesítés",
"Yes": "Igen",
"your-email-address": "Az e-mail címe",
"your-name": "Neve",
"days": "nap",
"for": "ennél:",
"months": "hónap",
"seconds": "másodperc",
"vote": "szavazat alapján",
"votes": "szavazat alapján",
"with": "",
"make-a-standard-poll": "Szokásos szavazás létrehozása",
"schedule-an-event": "Esemény ütemezése",
"where-are-my-polls": "Hol vannak a szavazásaim?",
"administrator-mail-address": "Adminisztrátor e-mail címe",
"application-name": "Alkalmazás neve",
"clean-url": "Tiszta URL",
"database-driver": "Adatbázis-meghajtó",
"database-hostname": "Adatbázis gépneve",
"database-name": "Adatbázis neve",
"database-port": "Adatbázis portja",
"default-language": "Alapértelmezett nyelv",
"General": "Általános",
"Install": "Telepítés",
"migration-table": "Áttelepítési tábla",
"Password": "Jelszó",
"Prefix": "Előtag",
"respond-to-mail-address": "Válasz e-mail cím",
"User": "Felhasználó",
"change-language": "Nyelv módosítása",
"select-language": "Válasszon nyelvet",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "„Az út hosszú, de az irány tiszta…”<br/>A Framasoft csak az adományaikból él.<br/>Előre is köszönjük a támogatását itt: https://soutenir.framasoft.org",
"message-for-the-author": "Üzenet a szerzőnek",
"notification-of-poll-x": "Szavazás értesítése: %s",
"participant-link": "Résztvevői hivatkozás",
"poll-participation-x": "Részvétel a szavazásban: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Valaki épp módosította a szavazását a <a href=\"%1$s\">%1$s</a> hivatkozást követve.",
"someone-just-deleted-your-poll-x": "Valaki letörölte a(z) „%s” szavazását.",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Köszönjük, hogy részt vett az alábbi hivatkozás mentén elérhető szavazásban",
"thank-you-for-your-trust": "Köszönjük a bizalmat.",
"this-is-the-message-to-forward-to-the-poll-participants": "Ez a résztvevőknek küldendő üzenet.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Ezt az e-mailt NE továbbítsa a szavazás résztvevőinek, hanem tartsa titokban. <br/><br/>A következő hivatkozást követve módosíthatja a szavazást",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "szavazott.<br/>A következő hivatkozással keresheti fel a szavazást",
"has-just-created-a-poll-called": "létrehozott egy szavazást",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "frissített egy szavazatot.<br/>A következő hivatkozással keresheti fel a szavazást",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "írt egy hozzászólást.<br/>A következő hivatkozással keresheti fel a szavazást",
"thank-you-for-your-understanding": "Köszönjük a megértést.",
"the-application": "Az alkalmazás",
"is-currently-under-maintenance": "jelenleg karbantartás alatt van.",
"submit-access": "Hozzáférés beküldése",
"wrong-password": "Hibás jelszó",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "A szavazásban való részvételhez meg kell adnia egy jelszót.",
"you-have-to-provide-a-password-to-access-the-poll": "A szavazáshoz való hozzáféréshez meg kell adnia egy jelszót.",
"x-option": "%s lehetőség",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Ha szavaz, akkor az e-mail címét bárki megtekintheti",
"best-choice": "Legjobb választás",
"best-choices": "Legjobb választások",
"Chart": "Grafikon",
"display-the-chart-of-the-results": "Eredmény grafikus ábrázolása",
"edit-line-x": "Sor szerkesztése: %s",
"link-to-edit-this-particular-line": "Hivatkozás ennek a sornak a szerkesztéséhez",
"remove-line": "Sor eltávolítása:",
"save-choices": "Szavazatok mentése",
"scroll-to-the-left": "Görgetés balra",
"scroll-to-the-right": "Görgetés jobbra",
"the-current-best-choice-is": "Jelenlegi legjobb lehetőség:",
"the-current-best-choices-are": "Jelenlegi legjobb lehetőségek:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Az adott sor szerkesztéséhez szükséges hivatkozás a vágólapra lett másolva.",
"Total": "Összesen",
"vote-no-for": "„Nem” szavazat a következőre:",
"vote-yes-for": "„Igen” szavazat a következőre:",
"votes-under-reserve-for": "Feltételes szavazatok ennél:",
"polled-user": "szavazó",
"polled-users": "szavazó",
"admin-link-for-the-poll": "Adminisztrációs hivatkozás a szavazáshoz",
"cancel-the-description-edit": "Leírás szerkesztésének elvetése",
"cancel-the-email-address-edit": "E-mail cím szerkesztésének elvetése",
"cancel-the-expiration-date-edit": "Lejárati idő szerkesztésének visszavonása",
"cancel-the-name-edit": "Név szerkesztésének elvetése",
"cancel-the-rules-edit": "Szabály szerkesztésének elvetése",
"cancel-the-title-edit": "Cím szerkesztésének elvetése",
"creator-of-the-poll": "Szavazás létrehozója",
"edit-name": "Név szerkesztése",
"edit-the-description": "Leírás szerkesztése",
"edit-the-email-address": "E-mail cím szerkesztése",
"edit-the-expiry-date": "Lejárati idő szerkesztése",
"edit-the-poll-rules": "Szabály szerkesztése",
"edit-title": "Cím szerkesztése",
"export-to-csv": "Exportálás CSV fájlba",
"no-password": "Nincs jelszó",
"only-votes-are-protected": "Csak a szavazatok védettek",
"password-protected": "Jelszóval védett",
"poll-rules": "Szavazási szabályok",
"Print": "Nyomtatás",
"public-link-to-the-poll": "Nyilvános hivatkozás a szavazáshoz",
"remove-all-comments": "Összes hozzászólás törlése",
"remove-all-votes": "Összes szavazat törlése",
"remove-password": "Jelszó törlése",
"remove-the-poll": "Szavazás törlése",
"results-are-hidden": "A szavazatok rejtettek",
"results-are-visible": "A szavazatok nyilvánosak",
"rich-editor": "Részletes szerkesztő",
"save-the-description": "Leírás mentése",
"save-the-email-address": "E-mail cím mentése",
"save-the-new-expiration-date": "Új lejárati idő mentése",
"save-the-new-name": "Új név mentése",
"save-the-new-rules": "Új szabályok mentése",
"save-the-new-title": "Új cím mentése",
"simple-editor": "Egyszerű szerkesztő",
"title-of-the-poll": "A szavazás címe",
"voters-email-addresses-are-collected": "A szavazók e-mail címe be lesz gyűjtve",
"voters-email-addresses-are-collected-and-required": "A szavazók e-mail címe be lesz gyűjtve és kötelező",
"voters-email-addresses-are-collected-required-and-verified": "A szavazók e-mail címe be lesz gyűjtve, kötelező és megerősítés is szükséges",
"voters-email-addresses-are-not-collected": "A szavazók e-mail címe nem lesz gyűjtve",
"votes-and-comments-are-locked": "Szavazás és hozzászólások lezárása",
"votes-protected-by-password": "A szavazatok jelszóval védettek",
"all-voters-can-modify-any-vote": "Minden szavazó bármelyik szavazatot módosíthatja",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Az azonosító megadásával a nemkívánatos személyek is könnyebben hozzáférhetnek a szavazáshoz. Javasolt jelszóval védeni.",
"collect-voters-email-addresses": "Szavazól e-mail címének begyűjtése",
"Confirmation": "Megerősítés",
"customize-the-url": "URL személyre szabása",
"email-addresses-are-collected-but-not-required": "Az e-mail címek be lesznek gyűjtve, de nem kötelező",
"email-addresses-are-not-collected": "Az e-mail cím nem lesz gyűjtve",
"email-addresses-are-required": "Az e-mail cím megadása kötelező",
"email-addresses-are-required-and-verified": "Az e-mail cím megadása kötelező, és megerősítés is szükséges",
"go-to-step-2": "Tovább a 2. lépéshez",
"limit-the-amount-of-voters-per-option": "Szavazatok lehetőségenkénti számának korlátozása",
"more-informations-here": "További információk itt:",
"only-the-poll-maker-can-see-the-poll-results": "Csak a szavazás készítője láthatja az eredményt",
"optional-parameters": "Nem kötelező paraméterek",
"Permissions": "Engedélyek",
"poll-creation-1-of-3": "Szavazás létrehozása (1/3)",
"poll-link": "Hivatkozás a szavazáshoz",
"poll-title": "Szavazás címe",
"receive-an-email-for-each-new-comment": "E-mail értesítés küldése minden egyes hozzászóláskor",
"receive-an-email-for-each-new-vote": "E-mail értesítés küldése minden egyes szavazatkor",
"required-fields-cannot-be-left-blank": "A kötelező mezők nem maradhatnak üresen.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Az azonosító betűket, számokat és kötőjeleket („-”) tartalmazhat.",
"the-results-are-publicly-visible": "Az eredmények nyilvánosan láthatóak",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Markdown formátumot is használhat a leírás vonzóbbá tételéhez.",
"use-a-password-to-restrict-access": "Hozzáférés korlátozása jelszóval",
"value-max": "Érték maximuma",
"voters-can-modify-their-own-vote-themselves": "A szavazók módosíthatják a saját szavazataikat",
"votes-cannot-be-modified": "A szavazatokat nem lehet módosítani",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Figyelmeztetés: Bárki láthatja a szavazók e-mail címeit, mert bármely szavazó bármelyik szavazatot módosíthatja. Célszerű korlátozni a jogosultsági szabályokat.",
"you-are-in-the-poll-creation-section": "A szavazáslétrehozási szakaszban van.",
"you-can-enable-or-disable-the-editor-at-will": "Kedvére ki- vagy bekapcsolhatja a szerkesztőt.",
"votes-per-option": "lehetőségenkénti szavazatok száma",
"go-to-step-3": "Tovább a 3. lépéshez",
"return-to-step-1": "Vissza az 1. lépéshez",
"add-a-choice": "Lehetőség hozzáadása",
"add-a-link-or-an-image": "Hivatkozás vagy kép hozzáadása",
"alternative-text": "Alternatív szöveg",
"links-or-images-can-be-included-using": "Hivatkozásokat és képeket a következő módon lehet beágyazni:",
"markdown-syntax": "Markdown szintaxis",
"poll-options-2-of-3": "Szavazási beállítások (2/3)",
"remove-a-choice": "Lehetőség eltávolítása",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Ezek nem kötelező mezők. Itt megadhat egy hivatkozást, egy képet vagy mindkettőt.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Egy szavazás létrehozásához legalább két lehetőséget kell megadni.",
"url-of-the-image": "A kép URL-e",
"you-can-add-or-remove-choices-with-the-buttons": "A gombokkal adhat hozzá és vehet el lehetőségeket",
"add-a-day": "Nap hozzáadása",
"add-a-time-slot": "Idősáv hozzáadása",
"choose-dates-for-your-poll": "Válasszon dátumokat a szavazáshoz",
"copy-times-from-the-first-day": "Idősávok átmásolása az első napból",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Minden egyes napnál szabadon adhat meg találkozási időket (például „8h”, „8:30”, „8h-10h”, „este” stb.)",
"poll-dates-2-of-3": "Szavazási dátumok (2/3)",
"remove-a-day": "Nap eltávolítása",
"remove-a-time-slot": "Idősáv eltávolítása",
"remove-all-days": "Összes nap eltávolítása",
"remove-all-times": "Összes idősáv eltávolítása",
"remove-this-day": "Nap eltávolítása",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Egy esemény ütemezéséhez legalább két lehetőséget kell megadni (azaz két idősávot egy nap, vagy két napot).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "A gombokkal további napokat és idősávokat adhat hozzá",
"back-to-step-2": "Vissza a 2. lépéshez",
"confirm-the-creation-of-your-poll": "A szavazás létrehozásának megerősítése",
"create-the-poll": "Szavazás létrehozása",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Lejárati idő:",
"list-of-options": "Lehetőségek listája",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Ha megerősíti a szavazás létrehozását, automatikusan át lesz irányítva a szavazás adminisztrációs oldalára.",
"removal-date-and-confirmation-3-of-3": "Eltávolítási idő és megerősítés (3/3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Aztán két e-mailt fog kapni: egyet ami a résztvevőknek elküldendő hivatkozást tartalmazza, és egy másikat, amely a szavazás adminisztrációs oldalának hivatkozását tartalmazza.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Lejárati időt adhat meg a szavazáshoz.",
"your-poll-will-automatically-be-archived": "A szavazása automatikusan archiválva lesz",
"your-poll-will-be-automatically-archived-in-x-days": "A szavazása %d nap után automatikusan archiválva lesz.",
"after-the-last-date-of-your-poll": "a szavazás utolsó dátuma után.",
"version-x": "%s verzió",
"add-a-column": "Oszlop hozzáadása",
"adding-a-column": "Oszlop hozzáadása",
"all-comments-deleted": "Összes hozzászólás törölve",
"all-votes-deleted": "Összes szavazat törölve",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "A szavazás adminisztrátoraként ezzel a gombbal módosíthatja a szavazás sorait",
"back-to-the-poll": "Vissza a szavazáshoz",
"choice-added": "Lehetőség hozzáadva",
"collect-the-emails-of-the-polled-users-for-the-choice": "Az erre szavazó felhasználók e-mail címének begyűjtése",
"column-deleted": "Oszlop törölve",
"comment-deleted": "Hozzászólás törölve",
"confirm-removal-of-all-comments": "Az összes hozzászólás eltávolításának megerősítése",
"confirm-removal-of-all-votes": "Az összes szavazat eltávolításának megerősítése",
"confirm-removal-of-the-column": "Az oszlop eltávolításának megerősítése.",
"confirm-removal-of-your-poll": "A szavazás eltávolításának megerősítése",
"delete-poll": "Szavazás törlése",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Végül, módosíthatja a szavazás tulajdonságait, mint a címet, hozzászólásokat vagy az e-mail címét.",
"keep-comments": "Hozzászólások megtartása",
"keep-the-comments": "A hozzászólások megtartása",
"keep-the-poll": "Szavazás megtartása",
"keep-the-votes": "Szavazatok megtartása",
"keep-this-poll": "A szavazás megtartása",
"keep-votes": "Szavazatok megtartása",
"poll-fully-deleted": "Szavazás teljesen törölve",
"poll-saved": "Szavazás mentve",
"remove-column": "Oszlop eltávolítása",
"remove-the-comments": "Hozzászólások eltávolítása",
"remove-the-votes": "Szavazatok eltávolítása",
"the-poll-was-created": "A szavazás létrehozva.",
"vote-added": "Szavazat hozzáadva",
"vote-deleted": "Szavazat törölve",
"vote-updated": "Szavazat frissítve",
"you-can-add-a-new-scheduling-date-to-your-poll": "Új ütemezési dátumot adhat hozzá a szavazáshoz.",
"your-poll-has-been-removed": "A szavazása eltávolítva.",
"and-add-a-new-column-with": "és új oszlop hozzáadása ezzel:",
"remove-a-column-or-a-line-with": "oszlop vagy sor törlése ezzel:",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "A „ha szükséges” lehetőséget választó felhasználók a következő e-mail címeket hagyták:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "A „nem” lehetőséget választó felhasználók a következő e-mail címeket hagyták:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Az „igen” lehetőséget választó felhasználók a következő e-mail címeket hagyták:",
"deletion-date": "Törlési idő:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Ha szeretne részt venni ebben a szavazásban, meg kell adnia a nevét, a válaszait, és a sor végén lévő mentés gombra kattintva be kell küldenie.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Az adminisztrátor lezárta ezt a szavazást. A szavazatok és hozzászólások be lettek fagyasztva.",
"the-poll-has-expired-it-will-soon-be-deleted": "A szavazás lejárt. Hamarosan törölve lesz.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "A szavazata el lett mentve, de ne felejtse el megőrizni a személyre szabott hivatkozását, hogy módosítani tudja később a szavazatát."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Create un sondaggio",
"define-dates-or-subjects-to-choose-from": "Definite date o soggetti tra cui scegliere",
"discuss-and-make-a-decision": "Discutete e prendete la vostra decisione",
"do-you-want-to": "Volete",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate è un servizio online per pianificare un appuntamento o prendere una decisione velocemente e facilmente. Non è richiesta nessuna registrazione.",
"here-is-how-it-works": "Ecco come funziona:",
"send-the-poll-link-to-your-friends-or-colleagues": "Inviate il link ai vostri amici o colleghi",
"what-is-framadate": "Cos'è Framadate?",
"view-an-example": "vedere un esempio?",
"cecill-b-license": "licenza CeCILL-B",
"framadate-is-licensed-under-the": "Framadate è rilasciato con licenza",
"framadate-was-initially-based-on": "Framadate si basa su",
"the-software": "Il software",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Questo software richiede l'abilitazione di javascript e cookie. È compatibile con i seguenti browser:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un software sviluppato dall'Università di Strasburgo. Oggi il suo sviluppo è portato avanti dall'associazione Framasoft.",
"grow-your-own": "Fate crescere il vostro",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Se volete installare il software per uso personale e quindi aumentare la vostra autonomia, vi possiamo aiutare su:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Per partecipare allo sviluppo del software, proporre dei miglioramenti o semplicemente scaricarlo, si può accedere a",
"the-development-site": "sito di sviluppo",
"Actions": "Azioni",
"Administration": "Amministrazione",
"Author": "Autore",
"back-to-administration": "Ritorna all'amministrazione",
"change-the-poll": "Modificare il sondaggio",
"Email": "Email",
"Executed": "Eseguito",
"expiry-date": "Scadenza",
"Fail": "Fallimento",
"failed": "Fallito:",
"Format": "Formato",
"Installation": "Installazione",
"Logs": "Log",
"Migration": "Migrazione",
"Nothing": "Niente",
"pages": "Pagine:",
"poll-id": "ID del sondaggio",
"poll-deleted": "Sondaggio cancellato",
"Polls": "Sondaggi",
"Purge": "Depurare",
"purge-the-polls": "Depurare i sondaggi",
"purged": "Depurati:",
"see-the-poll": "Vedere il sondaggio",
"skipped": "Saltato:",
"Status": "Status",
"succeeded": "Successo:",
"Success": "Successo",
"Summary": "Sommario",
"Title": "Titolo",
"Votes": "Voti",
"Waiting": "Attendi",
"polls-in-the-database-at-this-time": "sondaggi presenti nel database attualmente",
"check-again": "Verifica nuovamente",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Prendi in considerazione di attivare l'estensione PHP OpenSSL per migliorare la sicurezza.",
"consider-setting-the-date-timezone-in-php-ini": "Prendi in considerazione di configurare la date.timezone dentro al file php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "IT_Consider setting « session.cookie_httponly = 1 » inside your php.ini or add « php_value session.cookie_httponly 1 » to your .htaccess so that cookies can't be accessed through Javascript.",
"continue-the-installation": "Continuare l'installazione",
"cookies-are-served-from-http-only": "I cookies sono forniti esclusivamente con HTTP.",
"installation-checking": "Verifica dell'installazione",
"openssl-extension-loaded": "L'estensione PHP OpenSSL è caricata.",
"php-intl-extension-is-enabled": "L'estensione PHP Intl è attiva.",
"php-version-x-is-enough-needed-at-least-php-x": "La versione di PHP %s è sufficiente (è richiesto almeno PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "La directory (%s) dei file di configurazione non ha i permessi di scrittura e il file di configurazione (%s) non esiste.",
"the-config-file-directory-x-is-writable": "La directory (%s) dei file di configurazione è accessibile in scrittura.",
"the-config-file-exists": "Il file di configurazione esiste.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "La directory (%s) per il template compilato non esiste in \"%s\". Riprova il processo di installazione.",
"the-template-compile-directory-x-is-not-writable": "La directory (%s) per il template compilato non ha i permessi di scrittura.",
"the-template-compile-directory-x-is-writable": "La directory (%s) per il template compilato è accessibile in scrittura.",
"you-need-to-enable-the-php-intl-extension": "È necessario attivare l'estensione PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "La tua versione di PHP (%s) è troppo vecchia. Questa applicazione richiede almeno PHP %s.",
"date-timezone-is-set": "date.timezone è definita.",
"add-a-comment-to-the-poll": "Aggiungere un commento al sondaggio",
"Comment": "Il vostro commento",
"comment-saved": "Commento aggiunto",
"Comments": "Commenti dei partecipanti",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Inserisci il tuo nome e un commento prima di inviare il form",
"remove-comment": "Eliminare il commento",
"submit-comment": "Inviare il commento",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d/%m/%Y %H:%M",
"add-range-dates": "Aggiungere un intervallo tra 2 date",
"end-date": "Data finale",
"start-date": "Data iniziale",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Potete selezionare al massimo 4 mesi",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "giorno/mese/anno",
"edit-link-for-poll-x": "Modifica il link del sondaggio \"%s\"",
"here-is-the-link-for-editing-your-vote": "Questo è il link per modificare il vostro voto:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Se non vuoi perdere il tuo link personalizzato, possiamo inviartelo con un'e-mail.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Si prega di attendere %d secondi prima che possiamo inviarvi un e-mail, e riprovare.",
"REMINDER": "Promemoria",
"Send": "Invio",
"the-email-address-is-not-correct": "Indirizzo e-mail non corretto.",
"your-reminder-has-been-successfully-sent": "Il vostro promemoria è stato inviato con successo !",
"adding-vote-failed": "Aggiunta del voto fallito",
"cant-create-an-empty-column": "Impossibile creare una colonna vuota.",
"cant-create-the-config-php-file-in-x": "Impossibile creare il file config.php in '%s'.",
"comment-failed": "Commento fallito",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "I cookies non sono permessi sul vostro browser. È necessario permetterli per creare un sondaggio.",
"enter-a-name": "Inserire un nome",
"enter-a-name-and-a-comment": "Inserire un nome e un commento!",
"enter-a-title": "Inserire un titolo",
"enter-an-email-address": "Inserire un indirizzo e-mail",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Errore sulla limitazione del numero di voti: il valore deve essere un numero intero maggiore di 0",
"error": "Errore!",
"failed-to-delete-all-comments": "Impossibile eliminare tutti i commenti",
"failed-to-delete-all-votes": "Impossibile eliminare tutti i voti",
"failed-to-delete-column": "Impossibile eliminare la colonna",
"failed-to-delete-the-comment": "Impossibile eliminare il commento",
"failed-to-delete-the-poll": "Impossibile eliminare il sondaggio",
"failed-to-delete-the-vote": "Impossibile eliminare il voto",
"failed-to-insert-the-comment": "Errore nell'inserimento del commento",
"failed-to-save-poll": "Errore nel salvataggio del sondaggio",
"forbidden": "Vietato",
"GenericErrorPollCreation": "ErroreGenericoCreazioneSondaggio",
"identifier-is-already-used": "L'identificativo è già in uso",
"if-you-quit-now-your-changes-will-be-lost": "Se esci adesso, le tue modifiche andranno perse.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Javascript è disattivato sul vostro browser. È necessario attivarlo per creare un sondaggio.",
"missing-values": "Valori mancanti",
"no-polls-found": "Nessun sondaggio trovato",
"password-is-empty": "La password è vuota.",
"passwords-do-not-match": "Le password non corrispondono.",
"poll-has-been-updated-before-you-vote": "Il sondaggio è stato aggiornato prima del tuo voto",
"something-has-gone-wrong": "Qualcosa non ha funzionato...",
"something-is-wrong-with-the-format": "Qualcosa non va nel formato",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Qualcosa non va nel formato: l'URL personalizzato può contenere solo caratteri alfanumerici e trattini.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Qualcosa non va nel formato: il nome non può avere spazi prima o dopo",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "L'indirizzo non è corretto! È necessario un indirizzo e-mail valido (per esempio r.stallman@outlock.com) per ricevere il link al sondaggio.",
"the-column-already-exists": "La colonna esiste già",
"the-name-is-invalid": "Il nome non è valido.",
"the-name-youve-chosen-already-exists-in-this-poll": "Il nome che avete scelto esiste già in questo sondaggio!",
"there-is-a-problem-with-your-choices": "C'è un problema con le vostre scelte",
"this-identifier-is-not-allowed": "Questo identificatore non è permesso",
"this-poll-doesnt-exist": "Questo sondaggio non esiste!",
"unable-to-connect-to-database": "Impossibile connettersi al database",
"update-vote-failed": "L'aggiornamento del voto è fallito",
"you-already-voted": "Hai già votato",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Non è possibile creare un sondaggio con risultati nascosti con la seguente opzione: ",
"you-cant-select-more-than-x-dates": "Non puoi selezionare più di %d date",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Non hai compilato la prima sezione della creazione del sondaggio o la tua sessione è scaduta.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Il tuo voto non è stato conteggiato perché nel frattempo qualcun altro ha votato, ed è andato in conflitto con le tue scelte e le condizioni del sondaggio. Per favore, riprova.",
"Address": "Indirizzo",
"created-polls": "Sondaggi creati",
"have-a-good-day": "Buona giornata!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Ecco la lista dei sondaggi che gestisci su %s :",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Se non hai richiesto tu questa azione o se pensi si tratti di un abuso, puoi segnalarlo all'amministratore a %s.",
"its-address": "Il suo indirizzo",
"last-access-date": "Ultimo accesso",
"list-of-your-polls": "Lista dei tuoi sondaggi",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS : questa e-mail è stata inviata perché tu o qualcun altro ha richiesto il recupero dei sondaggi creati tramite il tuo indirizzo e-mail.",
"polls-saved-inside-this-browser": "Sondaggio salvato nel browser",
"polls-sent": "Sondaggi inviati",
"remove-all-my-polls-from-this-browsers-index": "Rimuovi tutti i sondaggi dalla memoria del browser",
"remove-poll-from-index": "Rimuovi il sondaggio dalla memoria",
"send-me-my-polls": "Invia i miei sondaggi",
"send-my-polls-by-email": "Invia i mi ei sondaggi per e-mail",
"the-date-you-created-or-last-accessed-the-poll": "La data di creazione o di ultimo accesso al sondaggio",
"the-title-of-the-poll": "Il titolo del sondaggio",
"there-are-no-polls-saved-inside-your-browser-yet": "Non ci sono ancora sondaggi salvati nel tuo browser",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Per cancellare i dati clicca sul cestino sulla linea o clicca l'opzione «cancella l'indice del mio sondaggio». Questo non cancellerà il tuo sondaggio.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Per aiutarti a trovare i tuoi precedenti sondaggi abbiamo salvato ogni sondaggio che hai creato o a cui hai avuto accesso nel tuo browser. Queste informazioni sono salvate solo nel browser. Le seguenti informazioni verranno salvate:",
"visited-polls": "Sondaggi visitati",
"in-the-format-name-mail-com": "(nel formato nome@mail.com)",
"Add": "Aggiungere",
"Back": "Precedente",
"back-to-the-homepage-of": "Ritornare all'home page",
"Cancel": "Annulla",
"Choice": "Scelta",
"Classic": "Classico",
"Close": "Chiudere",
"create-your-own-polls": "Crea il tuo sondaggio",
"creation-date": "Data di creazione:",
"Date": "Data",
"Day": "giorni",
"Description": "Descrizione",
"Edit": "Modificare",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate è un servizio online per pianificare un appuntamento o prendere una decisione velocemente e facilmente.",
"Home": "Home Page",
"Information": "Informazioni",
"legend": "Legenda:",
"Link": "Link",
"Markdown": "Markdown",
"Next": "Continua",
"No": "No",
"page-generated-in": "Pagina generata in",
"Poll": "Sondaggio",
"Remove": "Cancella",
"Save": "Salva",
"Search": "Cerca",
"Time": "Orario",
"under-reserve": "Se necessario",
"Validate": "Conferma",
"Yes": "Sì",
"your-email-address": "Il tuo indirizzo e-mail",
"your-name": "Il tuo nome",
"days": "giorni",
"for": "per",
"months": "mesi",
"seconds": "secondi",
"vote": "voto",
"votes": "voti",
"with": "con",
"make-a-standard-poll": "Creare un sondaggio",
"schedule-an-event": "Pianificare un evento",
"where-are-my-polls": "Dove sono i miei sondaggi?",
"administrator-mail-address": "Indirizzo e-mail dell'amministratore",
"application-name": "Nome dell'applicazione",
"clean-url": "Cancella URL",
"database-driver": "Driver del database",
"database-hostname": "Hostname del database",
"database-name": "Nome del database",
"database-port": "Porta del database",
"default-language": "Lingua predefinita",
"General": "Generale",
"Install": "Installare",
"migration-table": "Tabella di migrazione",
"Password": "Password",
"Prefix": "Prefisso",
"respond-to-mail-address": "E-mail per le risposte",
"User": "Utente",
"change-language": "Cambiare la lingua",
"select-language": "Scegliere la lingua",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"La strada è lunga, ma la via è libera…\"<br/>Framasoft vive solo grazie alle vostre donazioni.<br/> Grazie in anticipo per il vostro sostegno https://soutenir.framasoft.org",
"message-for-the-author": "Messaggio per l'autore",
"notification-of-poll-x": "Notifica del sondaggio: %s",
"participant-link": "Link per i partecipanti",
"poll-participation-x": "Partecipazione al sondaggio: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Qualcuno ha appena cambiato il vostro sondaggio al seguente link <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Qualcuno ha appena eliminato il vostro sondaggio \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Grazie per aver partecipato al sondaggio al seguente link",
"thank-you-for-your-trust": "Grazie per la vostra fiducia.",
"this-is-the-message-to-forward-to-the-poll-participants": "Questo è il messaggio da inoltrare ai partecipanti al sondaggio.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Questo messaggio NON deve essere inviato ai partecipanti, e deve rimanere privato.<br/><br/>Puoi modificare il tuo sondaggio al seguente link",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "aggiunto un voto.<br/>Puoi visualizzare il tuo sondaggio al seguente link",
"has-just-created-a-poll-called": "ha appena creato un sondaggio intitolato",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "aggiornato un voto.<br/>Puoi visualizzare il tuo sondaggio al seguente link",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "inserito un commento.<br/>Puoi visualizzare il tuo sondaggio al seguente link",
"thank-you-for-your-understanding": "Grazie per la vostra comprensione.",
"the-application": "L'applicazione",
"is-currently-under-maintenance": "attualmente è in manutenzione.",
"submit-access": "Accesso",
"wrong-password": "Password sbagliata",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Devi inserire la password per poter partecipare al sondaggio.",
"you-have-to-provide-a-password-to-access-the-poll": "Devi inserire la password per accedere al sondaggio.",
"x-option": "%s opzione",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Chiunque può vedere il tuo indirizzo mail dopo il tuo voto",
"best-choice": "Scelta migliore",
"best-choices": "Scelte migliori",
"Chart": "Grafico",
"display-the-chart-of-the-results": "Mostra il grafico dei risultati",
"edit-line-x": "Modificare la riga : %s",
"link-to-edit-this-particular-line": "Link per modificare questa linea",
"remove-line": "Eliminare la riga :",
"save-choices": "Salvare le scelte",
"scroll-to-the-left": "Spostare a sinistra",
"scroll-to-the-right": "Spostare a destra",
"the-current-best-choice-is": "La migliore scelta per ora è:",
"the-current-best-choices-are": "Le migliori scelte per ora sono:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Il link per modificare questa linea è stato copiato negli appunti!",
"Total": "Totale",
"vote-no-for": "Scegliere \"no\" per",
"vote-yes-for": "Scegliere \"sì\" per",
"votes-under-reserve-for": "Voti sotto riserva per",
"polled-user": "Votante",
"polled-users": "Votanti",
"admin-link-for-the-poll": "Link per amministrare il sondaggio",
"cancel-the-description-edit": "Annullare la modifica della descrizione",
"cancel-the-email-address-edit": "Annullare la modifica dell'email",
"cancel-the-expiration-date-edit": "Annulla il cambio di data di scadenza",
"cancel-the-name-edit": "Annulla il cambio di nome",
"cancel-the-rules-edit": "Annullare le modifica dei permessi",
"cancel-the-title-edit": "Annullare la modifica del titolo",
"creator-of-the-poll": "Autore del sondaggio",
"edit-name": "Modifica il nome",
"edit-the-description": "Modificare la descrizione",
"edit-the-email-address": "Modificare l'email",
"edit-the-expiry-date": "Cambiare la data di scadenza",
"edit-the-poll-rules": "Modificare i permessi del sondaggio",
"edit-title": "Modificare il titolo",
"export-to-csv": "Esportare in CSV",
"no-password": "Nessuna password",
"only-votes-are-protected": "Solo i voti sono protetti",
"password-protected": "Protetto da una password",
"poll-rules": "Permessi del sondaggio",
"Print": "Stampare",
"public-link-to-the-poll": "Link pubblico del sondaggio",
"remove-all-comments": "Eliminare tutti i commenti",
"remove-all-votes": "Eliminare tutti i voti",
"remove-password": "Eliminare la password",
"remove-the-poll": "Eliminare il sondaggio",
"results-are-hidden": "I risultati sono nascosti",
"results-are-visible": "I risultati sono visibili",
"rich-editor": "Editor avanzato",
"save-the-description": "Salvare la descrizione",
"save-the-email-address": "Salvare l'email",
"save-the-new-expiration-date": "Salvare la data di scadenza",
"save-the-new-name": "Salvare il nuovo nome",
"save-the-new-rules": "Salvare i nuovi permessi",
"save-the-new-title": "Salvare il nuovo titolo",
"simple-editor": "Editor semplice",
"title-of-the-poll": "Titolo del sondaggio",
"voters-email-addresses-are-collected": "Gli indirizzi email degli utenti sono memorizzati",
"voters-email-addresses-are-collected-and-required": "Gli indirizzi mail degli utenti sono memorizzati e richiesti",
"voters-email-addresses-are-collected-required-and-verified": "Gli indirizzi mail degli utenti sono memorizzati, richiesti e verificati",
"voters-email-addresses-are-not-collected": "Gli indirizzi mail degli utenti non sono memorizzati",
"votes-and-comments-are-locked": "I voti e i commenti sono bloccati",
"votes-protected-by-password": "Voti protetti da una password",
"all-voters-can-modify-any-vote": "Tutti i votanti possono cambiare tutti i voti",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Definendo un ID si può facilitare l'accesso al sondaggio persone non desiderate. Si raccomanda di proteggerlo con una password.",
"collect-voters-email-addresses": "Memorizza gli indirizzi email",
"Confirmation": "Conferma",
"customize-the-url": "Personalizzare l'URL",
"email-addresses-are-collected-but-not-required": "Gli indirizzi email sono memorizzati ma non richiesti",
"email-addresses-are-not-collected": "Gli indirizzi email non sono memorizzati",
"email-addresses-are-required": "Gli indirizzi email sono richiesti",
"email-addresses-are-required-and-verified": "Indirizzo email richiesto e verificato",
"go-to-step-2": "Andare al punto 2",
"limit-the-amount-of-voters-per-option": "Limita il numero dei votanti per opzione",
"more-informations-here": "Maggiori informazioni qui:",
"only-the-poll-maker-can-see-the-poll-results": "Solo l'autore del sondaggio può vedere i risultati",
"optional-parameters": "Parametri opzionali",
"Permissions": "Permessi",
"poll-creation-1-of-3": "Creazione del sondaggio (1 di 3)",
"poll-link": "Link del sondaggio",
"poll-title": "Titolo del sondaggio",
"receive-an-email-for-each-new-comment": "Ricevere un e-mail per ogni nuovo commento",
"receive-an-email-for-each-new-vote": "Ricevere un email per ogni nuovo voto",
"required-fields-cannot-be-left-blank": "Riempire i campi obbligatori, segnati con *.",
"the-identifier-can-contain-letters-numbers-and-dashes": "L'ID può contenere lettere, numeri e trattini \"-\".",
"the-results-are-publicly-visible": "I risultati sono visibili senza password",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Per rendere la descrizione più gradevole, puoi usare la sintassi Markdown.",
"use-a-password-to-restrict-access": "Utilizza una password per limitare l'accesso al sondaggio",
"value-max": "Valore massimo",
"voters-can-modify-their-own-vote-themselves": "I partecipanti possono modificare il proprio voto",
"votes-cannot-be-modified": "I voti non possono essere modificati",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Attenzione: Chiunque può vedere gli indirizzi mail degli utenti dato che i votanti possono modificare ogni voto. Dovreste limitare i permessi di accesso.",
"you-are-in-the-poll-creation-section": "Sei nella sezione per la creazione di un nuovo sondaggio.",
"you-can-enable-or-disable-the-editor-at-will": "Puoi abilitare o disabilitare l'editor come vuoi.",
"votes-per-option": "voti per opzione",
"go-to-step-3": "Andare al punto 3",
"return-to-step-1": "Torna al punto 1",
"add-a-choice": "Aggiungere un scelta",
"add-a-link-or-an-image": "Aggiungi un collegamento o di un'immagine",
"alternative-text": "Testo alternativo",
"links-or-images-can-be-included-using": "E 'possibile inserire link o immagini utilizzando",
"markdown-syntax": "Sintassi Markdown",
"poll-options-2-of-3": "Scelta delle opzioni (2 di 3)",
"remove-a-choice": "Eliminare l'ultima scelta",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Questi campi sono facoltativi. Puoi aggiungere un link, un'immagine o entrambi.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Per creare un sondaggio convenzionale, è necessario fornire almeno due scelte diverse.",
"url-of-the-image": "URL dell'immagine",
"you-can-add-or-remove-choices-with-the-buttons": "Puoi aggiungere o eliminare delle scelte ulteriori con i pulsanti",
"add-a-day": "Aggiungere un giorno",
"add-a-time-slot": "Aggiungere un orario",
"choose-dates-for-your-poll": "Scegli le date del tuo sondaggio",
"copy-times-from-the-first-day": "Copia gli orari del primo giorno",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Per ogni giorno selezionato, hai la possibilità di scegliere o meno, le ore dell'incontro (per esempio : \"8h\", \"8:30\", \"8h-10h\", \"sera\", etc.)",
"poll-dates-2-of-3": "Scelta delle date (2 di 3)",
"remove-a-day": "Eliminare l'ultimo giorno",
"remove-a-time-slot": "Eliminare l'ultimo orario",
"remove-all-days": "Cancellare tutti i giorni",
"remove-all-times": "Cancellare tutti gli orari",
"remove-this-day": "Eliminare questo giorno",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Per creare un evento, è meglio proporre almeno 2 scelte (2 orari per lo stesso giorno o 2 giorni).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Puoi aggiungere o eliminare dei giorni et orari ulteriori con i pulsanti",
"back-to-step-2": "Torna al punto 2",
"confirm-the-creation-of-your-poll": "Conferma la creazione del tuo sondaggio",
"create-the-poll": "Crea il sondaggio",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Archivio Data:",
"list-of-options": "Liste delle tue scelte",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Un volta che hai confermato la creazione del sondaggio, sarai reindirizzati automaticamente sulla pagina di amministrazione del tuo sondaggio.",
"removal-date-and-confirmation-3-of-3": "Data di scadenza e conferma (3 di 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Nello stesso momento, riceverai 2 email : una con il Link verso il tuo sondaggio da inoltrare ai partecipanti, l'altra con il Link verso la pagina di amministrazione del sondaggio.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Si può decidere su una data più vicina di archiviazione.",
"your-poll-will-automatically-be-archived": "Il tuo sondaggio sarà archiviato automaticamente",
"your-poll-will-be-automatically-archived-in-x-days": "Il tuo sondaggio verrà archiviata automaticamente in %d giorni.",
"after-the-last-date-of-your-poll": "dopo l'ultimo giorno del tuo sondaggio.",
"version-x": "Versione %s",
"add-a-column": "Aggiungere una colonna",
"adding-a-column": "Aggiunta di una colonna",
"all-comments-deleted": "Tutti i commenti sono stati cancellati",
"all-votes-deleted": "Tutti i voti sono stati rimossi",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Essendo l'amministratore, puoi modificare tutte le righe di questo sondaggio con questo pulsante",
"back-to-the-poll": "Torna al sondaggio",
"choice-added": "Scelta aggiunta",
"collect-the-emails-of-the-polled-users-for-the-choice": "Raccogli le mail degli utenti che hanno scelto questa opzione",
"column-deleted": "Colonna rimossa",
"comment-deleted": "Commento rimosso",
"confirm-removal-of-all-comments": "Confermare l'eliminazione di tutti i commenti di questo sondaggio",
"confirm-removal-of-all-votes": "Confermare l'eliminazione di tutti i voti del sondaggio",
"confirm-removal-of-the-column": "Confermare l'eliminazione della colonna.",
"confirm-removal-of-your-poll": "Confermare l'eliminazione del sondaggio",
"delete-poll": "Cancella il sondaggio",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Potete infine modificare le informazioni relative a questo sondaggio come il titolo, i commenti o la vostra email.",
"keep-comments": "Tenere commenti",
"keep-the-comments": "Tenere commenti",
"keep-the-poll": "Tenere il sondaggio",
"keep-the-votes": "Tenere voti",
"keep-this-poll": "Mantengo questo sondaggio",
"keep-votes": "Tenere voti",
"poll-fully-deleted": "Sondaggio completamente rimosso",
"poll-saved": "Sondaggio salvato",
"remove-column": "Cancellare la colonna",
"remove-the-comments": "Eliminare i commenti",
"remove-the-votes": "Rimuovere i voti",
"the-poll-was-created": "Il sondaggio è stato creato.",
"vote-added": "Voto aggiunto",
"vote-deleted": "Voto cancellato",
"vote-updated": "Voto aggiornato",
"you-can-add-a-new-scheduling-date-to-your-poll": "Puoi aggiungere una data al tuo sondaggio.",
"your-poll-has-been-removed": "Il tuo sondaggio è stato eliminato!",
"and-add-a-new-column-with": "e se vi foste dimenticati di inserire una scelta, potreste aggiungere una colonna cliccando su",
"remove-a-column-or-a-line-with": "cancellare una colonna o una riga con",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Gli utenti che esprimono la preferenza \"Se necessario\" per questa opzione hanno lasciato il proprio indirizzo email:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Gli utenti che esprimono la preferenza \"No\" per questa opzione hanno lasciato il proprio indirizzo email:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Gli utenti che esprimono la preferenza \"Si\" per questa opzione hanno lasciato il proprio indirizzo email:",
"deletion-date": "Data di cancellazione:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Per partecipare a questo sondaggio, è necessario inserire vostro nome, scegliere tutti i parametri che preferite e confermare la vostra scelta con il pulsante alla fine della riga.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "L'amministratore ha bloccato questa indagine. Voti e commenti sono congelati, non è più possibile partecipare",
"the-poll-has-expired-it-will-soon-be-deleted": "Il sondaggio è scaduto, sarà presto rimosso.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Il tuo voto è stato preso in considerazione, ma attenzione: questa indagine consente la modifica del voto solo con il seguente link personalizzato; tenerlo al sicuro."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Maak een poll",
"define-dates-or-subjects-to-choose-from": "Voer datums of onderwerpen waaruit gekozen kan worden in",
"discuss-and-make-a-decision": "Discussieer en neem een beslissing",
"do-you-want-to": "Wil je",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate is een online service om snel en makkelijk een afspraak te plannen of een beslissing te nemen. Je hoeft je niet te registreren.",
"here-is-how-it-works": "Het werkt als volgt:",
"send-the-poll-link-to-your-friends-or-colleagues": "Stuur de link naar de poll naar je vrienden of collega's",
"what-is-framadate": "Wat is Framadate?",
"view-an-example": "een voorbeeld bekijken?",
"cecill-b-license": "CeCILL-B licentie",
"framadate-is-licensed-under-the": "Framadate is gelicenseerd onder de",
"framadate-was-initially-based-on": "",
"the-software": "Framadate",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "software ontwikkeld door de Universiteit van Straatsburg. Het wordt tegenwoordig ontwikkeld door de Framasoft vereniging.",
"grow-your-own": "Kweek je eigen",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Als je de software wil installeren voor eigen gebruik en zo je onafhankelijkheid wil vergroten, kunnen we je helpen op:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "",
"the-development-site": "de ontwikkeling-website",
"Actions": "Acties",
"Administration": "Beheer",
"Author": "Auteur",
"back-to-administration": "Terug naar beheerpagina",
"change-the-poll": "Bewerk poll",
"Email": "Email",
"Executed": "Uitgevoerd",
"expiry-date": "Vervaldatum",
"Fail": "Gefaald",
"failed": "Gefaald:",
"Format": "Formaat",
"Installation": "Installatie",
"Logs": "Logs",
"Migration": "Migratie",
"Nothing": "Niets",
"pages": "Pagina's:",
"poll-id": "Poll ID",
"poll-deleted": "",
"Polls": "Polls",
"Purge": "Leegmaken",
"purge-the-polls": "Maak de polls leeg",
"purged": "Leeggemaakt:",
"see-the-poll": "Ga naar poll",
"skipped": "Overgeslagen:",
"Status": "Status",
"succeeded": "Gelukt:",
"Success": "Gelukt",
"Summary": "Samenvatting",
"Title": "",
"Votes": "",
"Waiting": "Aan het wachten",
"polls-in-the-database-at-this-time": "polls in de database op dit moment",
"check-again": "Controleer opnieuw",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Overweeg de activering van de PHP OpenSSL extensie om de veiligheid te verhogen.",
"consider-setting-the-date-timezone-in-php-ini": "Overweeg de instelling van date.timezone in het php.ini bestand.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "NL_Consider setting « session.cookie_httponly = 1 » inside your php.ini or add « php_value session.cookie_httponly 1 » to your .htaccess so that cookies can't be accessed through Javascript.",
"continue-the-installation": "Installatie voortzetten",
"cookies-are-served-from-http-only": "NL_Cookies are served from HTTP only.",
"installation-checking": "Controle van de installatie",
"openssl-extension-loaded": "PHP OpenSSL extensie opgeladen.",
"php-intl-extension-is-enabled": "PHP Intl extensie is geactiveerd.",
"php-version-x-is-enough-needed-at-least-php-x": "PHP Versie %s voldoende (vereist PHP %s of hoger).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "De map van het configuratiebestand (%s) is niet schrijfbaar en het configuratiebestand (%s) bestaat niet.",
"the-config-file-directory-x-is-writable": "De map van het configuratiebestand (%s) is schrijfbaar.",
"the-config-file-exists": "Het configuratiebestand bestaat.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "De map voor compilatie van sjablonen (%s) bestaat niet in \"%s\". Probeer de installatie opnieuw.",
"the-template-compile-directory-x-is-not-writable": "De map voor compilatie van sjablonen (%s) is niet schrijfbaar.",
"the-template-compile-directory-x-is-writable": "De map voor compilatie van sjablonen (%s) is schrijfbaar.",
"you-need-to-enable-the-php-intl-extension": "U moet de PHP Intl extensie activeren.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Uw versie van PHP (%s) is te oud. Deze applicatie vereist PHP %s of hoger.",
"date-timezone-is-set": "date.timezone is ingesteld.",
"add-a-comment-to-the-poll": "Opmerking toevoegen aan de poll",
"Comment": "Jouw opmerking",
"comment-saved": "Opmerking opgeslagen",
"Comments": "Opmerkingen",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Vul je naam en een opmerking in voor het formulier in te dienen",
"remove-comment": "Verwijder opmerking",
"submit-comment": "Opmerking opslaan",
"a-e-b-y": "%a %e %b %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d-%m-%Y %H:%M",
"add-range-dates": "Voeg een datumbereik toe",
"end-date": "Einddatum",
"start-date": "Begindatum",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Je kan maximaal 4 maanden selecteren",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "dag/maand/jaar",
"edit-link-for-poll-x": "Bewerkingslink voor de poll \"%s\"",
"here-is-the-link-for-editing-your-vote": "Dit is de link om jouw stem te wijzigen:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Als je jouw persoonlijke link niet wilt verliezen, kunnen we deze per email verzenden.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Gelieve %d seconden te wachten voor we je een email kunnen sturen. Probeer dan opnieuw.",
"REMINDER": "HERINNERING",
"Send": "Verzenden",
"the-email-address-is-not-correct": "Foutief emailadres.",
"your-reminder-has-been-successfully-sent": "Jouw herinnering is verzonden!",
"adding-vote-failed": "Toevoegen stem gefaald",
"cant-create-an-empty-column": "Kan geen lege kolom maken.",
"cant-create-the-config-php-file-in-x": "Kan het bestand config.php niet maken in '%s'.",
"comment-failed": "Opmerking mislukt",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Cookies zijn uitgeschakeld in je browser. Cookies zijn nodig om een poll aan te maken.",
"enter-a-name": "Vul een naam in",
"enter-a-name-and-a-comment": "Vul een naam en een opmerking in!",
"enter-a-title": "Voer een titel in",
"enter-an-email-address": "Voer een emailadres in",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Fout over de hoeveelheid stemmen: waarde moet een getal groter dan 0 zijn.",
"error": "Fout!",
"failed-to-delete-all-comments": "Het is niet gelukt om alle opmerkingen te verwijderen",
"failed-to-delete-all-votes": "Het is niet gelukt om alle stemmen te verwijderen",
"failed-to-delete-column": "Kolom verwijderen mislukt",
"failed-to-delete-the-comment": "Het is niet gelukt om de opmerking te verwijderen",
"failed-to-delete-the-poll": "Het is niet gelukt om de poll te verwijderen",
"failed-to-delete-the-vote": "Het is niet gelukt de stem te verwijderen!",
"failed-to-insert-the-comment": "Het is niet gelukt om de opmerking in te voegen!",
"failed-to-save-poll": "Opslaan van de poll gefaald",
"forbidden": "Verboden!",
"GenericErrorPollCreation": "",
"identifier-is-already-used": "Deze ID is reeds gebruikt",
"if-you-quit-now-your-changes-will-be-lost": "",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript is uitgeschakeld in je browser. JavaScript is nodig om een poll aan te maken.",
"missing-values": "Ontbrekende waarden",
"no-polls-found": "Geen polls gevonden",
"password-is-empty": "Het wachtwoord is leeg",
"passwords-do-not-match": "De wachtwoorden zijn niet gelijk",
"poll-has-been-updated-before-you-vote": "De poll is gewijzigd voordat je stemde",
"something-has-gone-wrong": "Er is iets foutgegaan...",
"something-is-wrong-with-the-format": "Er is iets foutgegaan met het formaat",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Er is iets fout gegaan met het formaat: persoonlijke URLs mogen enkel alfanumerieke tekens en streepjes bevatten.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Er is iets fout gegaan met het formaat: de naam mag vooraan of achteraan geen spaties bevatten",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Het adres is niet juist! Je moet een geldig emailadres invoeren (zoals r.stallman@outlock.com) zodat je de link naar je poll kan ontvangen.",
"the-column-already-exists": "De kolom bestaat reeds",
"the-name-is-invalid": "De naam is niet geldig.",
"the-name-youve-chosen-already-exists-in-this-poll": "De naam die je hebt gekozen, bestaat al in deze poll!",
"there-is-a-problem-with-your-choices": "Er is een probleem met je keuzes",
"this-identifier-is-not-allowed": "",
"this-poll-doesnt-exist": "Deze poll bestaat niet!",
"unable-to-connect-to-database": "Kan geen verbinding maken met de database",
"update-vote-failed": "Wijzigen stem gefaald",
"you-already-voted": "Je hebt al gestemd",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Je kan geen poll met verborgen resultaten maken met de volgende optie: ",
"you-cant-select-more-than-x-dates": "Je kan niet meer dan %d dagen kiezen",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Je hebt het eerste deel van de poll niet ingevuld, of je sessie is verlopen.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry.",
"Address": "Adres",
"created-polls": "Aangemaakte polls",
"have-a-good-day": "Tot ziens!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Dit is de lijst van polls die je beheert op %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Indien je dat niet gevraagd hebt en je vermoedt misbruik van de dienst, dan kan je dat melden aan de beheerder op %s.",
"its-address": "",
"last-access-date": "Laatst bezocht",
"list-of-your-polls": "Lijst van jouw polls",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: deze email werd verstuurd omdat jij of iemand anders gevraagd hebt om een lijst van polls te ontvangen die gemaakt werden om jouw emailadres.",
"polls-saved-inside-this-browser": "Polls bewaard in deze browser",
"polls-sent": "Polls verstuurd",
"remove-all-my-polls-from-this-browsers-index": "Verwijder al mijn polls uit het geheugen van deze browser",
"remove-poll-from-index": "Verwijder de poll uit het geheugen",
"send-me-my-polls": "Stuur me mijn polls",
"send-my-polls-by-email": "Verzend mijn polls via email",
"the-date-you-created-or-last-accessed-the-poll": "De datum waarop de poll aangemaakt of laatst bezocht is",
"the-title-of-the-poll": "De titel van de poll",
"there-are-no-polls-saved-inside-your-browser-yet": "Er zijn nog geen polls bewaard in je browser",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Om deze informatie te verwijderen klik je op het vuilbakje op de overeenkomstige lijn of klik je op de « verwijder mijn polls uit het geheugen » optie. Je polls zelf worden hierdoor niet verwijderd.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Om je vorige polls makkelijk terug te vinden, bewaren we elke poll die je aanmaakt of bezoekt in je browser. Deze informatie wordt enkel in deze browser opgeslagen. De volgende informatie zal worden bewaard:",
"visited-polls": "Bezochte polls",
"in-the-format-name-mail-com": "(in het formaat naam@mail.com)",
"Add": "Toevoegen",
"Back": "Vorige",
"back-to-the-homepage-of": "Terug naar de homepage van",
"Cancel": "Annuleren",
"Choice": "",
"Classic": "Klassiek",
"Close": "Sluiten",
"create-your-own-polls": "Maak je eigen polls aan",
"creation-date": "Aanmaakdatum:",
"Date": "Datum",
"Day": "dagen",
"Description": "Beschrijving",
"Edit": "Bewerk",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "",
"Home": "Home",
"Information": "Informatie",
"legend": "Legenda:",
"Link": "Link",
"Markdown": "Markdown",
"Next": "Volgende",
"No": "Nee",
"page-generated-in": "Pagina gegenereerd in",
"Poll": "Poll",
"Remove": "Verwijderen",
"Save": "Opslaan",
"Search": "Zoek",
"Time": "Tijd",
"under-reserve": "Indien nodig",
"Validate": "Valideer",
"Yes": "Ja",
"your-email-address": "Je emailadres",
"your-name": "Je naam",
"days": "dagen",
"for": "voor",
"months": "maanden",
"seconds": "seconden",
"vote": "stem",
"votes": "stemmen",
"with": "met",
"make-a-standard-poll": "Maak een standaard poll",
"schedule-an-event": "Plan een evenement",
"where-are-my-polls": "Waar zijn mijn polls?",
"administrator-mail-address": "Mailadres van de applicatie",
"application-name": "Naam van de applicatie",
"clean-url": "Schone URL",
"database-driver": "Database driver",
"database-hostname": "Database hostname",
"database-name": "",
"database-port": "Database port",
"default-language": "Standaardtaal",
"General": "Algemeen",
"Install": "Installeren",
"migration-table": "Migratietabel",
"Password": "",
"Prefix": "Prefix",
"respond-to-mail-address": "Antwoordmail",
"User": "Gebruiker",
"change-language": "Wijzig taal",
"select-language": "Selecteer taal",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "\"Het is een lange weg, maar de doel is duidelijk...\"<br/>Framasoft overleeft enkel door jouw donaties.<br/>Alvast bedankt voor je ondersteuning https://soutenir.framasoft.org",
"message-for-the-author": "Bericht voor de autheur",
"notification-of-poll-x": "Bericht van poll: %s",
"participant-link": "Link voor deelnemers",
"poll-participation-x": "Poll deelname: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Iemand heeft je poll aangepast op de volgende link <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Iemand heeft zojuist je poll verwijderd \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Bedankt om deel te nemen aan de poll op de volgende link",
"thank-you-for-your-trust": "Bedankt voor je vertrouwen.",
"this-is-the-message-to-forward-to-the-poll-participants": "Dit is het bericht dat je kunt doorsturen aan de deelnemers van je poll.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Verzend dit bericht NIET naar de poll deelnemers. Je houdt het best privé.<br/><br/>Je kan je poll aanpassen op de volgende link",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "heeft een stem toegevoegd.<br/>Je kan je poll bezoeken op",
"has-just-created-a-poll-called": "heeft zojuist een poll aangemaakt met de titel",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "heeft een stem gewijzigd.<br/>Je kan je poll bezoeken op",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "heeft een opmerking geplaatst.<br/>Je kan je poll bezoeken op",
"thank-you-for-your-understanding": "Bedankt voor je begrip.",
"the-application": "De applicatie",
"is-currently-under-maintenance": "is momenteel in onderhoud.",
"submit-access": "Inloggen",
"wrong-password": "Ongeldig wachtwoord",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Je moet een wachtwoord opgeven om deel te nemen aan deze poll.",
"you-have-to-provide-a-password-to-access-the-poll": "Je moet een wachtwoord opgeven om toegang te krijgen tot deze poll.",
"x-option": "",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Iedereen zal je e-mailadres kunnen zien nadat je gestemd hebt",
"best-choice": "Beste keuze",
"best-choices": "Beste keuzes",
"Chart": "Grafiek",
"display-the-chart-of-the-results": "Toon de grafiek met resultaten",
"edit-line-x": "Bewerk regel: %s",
"link-to-edit-this-particular-line": "Link om deze lijn aan te passen",
"remove-line": "Verwijder regel:",
"save-choices": "Keuzes opslaan",
"scroll-to-the-left": "Scroll naar links",
"scroll-to-the-right": "Scroll naar rechts",
"the-current-best-choice-is": "De beste keuze is op dit moment:",
"the-current-best-choices-are": "De beste keuzes zijn op dit moment:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "De link om deze lijn aan te passen is gekopieerd naar het klembord!",
"Total": "Totaal",
"vote-no-for": "Stem nee voor",
"vote-yes-for": "Stem ja voor",
"votes-under-reserve-for": "Stem als nodig voor",
"polled-user": "ondervraagde gebruiker",
"polled-users": "ondervraagde gebruikers",
"admin-link-for-the-poll": "Admin-link naar de poll",
"cancel-the-description-edit": "Beschrijving bewerken annuleren",
"cancel-the-email-address-edit": "Emailadres bewerken annuleren",
"cancel-the-expiration-date-edit": "Vervaldatum bewerken annuleren",
"cancel-the-name-edit": "Naam bewerken annuleren",
"cancel-the-rules-edit": "Regels bewerken annuleren",
"cancel-the-title-edit": "Titel bewerken annuleren",
"creator-of-the-poll": "Initiatiefnemer van deze poll",
"edit-name": "Bewerk naam",
"edit-the-description": "Bewerk de beschrijving",
"edit-the-email-address": "Bewerk emailadres",
"edit-the-expiry-date": "Bewerk de vervaldatum",
"edit-the-poll-rules": "Bewerk de regels voor de poll",
"edit-title": "Bewerk titel",
"export-to-csv": "Exporteer naar CSV",
"no-password": "Geen wachtwoord",
"only-votes-are-protected": "Only votes are protected",
"password-protected": "Beveiligd met een wachtwoord",
"poll-rules": "Regels voor de poll",
"Print": "Print",
"public-link-to-the-poll": "Publieke link naar de poll",
"remove-all-comments": "Verwijder alle opmerkingen",
"remove-all-votes": "Verwijder alle stemmen",
"remove-password": "Wachtwoord verwijderen",
"remove-the-poll": "Verwijder de poll",
"results-are-hidden": "Resultaten zijn verborgen.",
"results-are-visible": "Resultaten zijn zichtbaar.",
"rich-editor": "Geavanceerde editor",
"save-the-description": "Beschrijving opslaan",
"save-the-email-address": "Emailadres opslaan",
"save-the-new-expiration-date": "Nieuwe vervaldatum opslaan",
"save-the-new-name": "Nieuwe naam opslaan",
"save-the-new-rules": "Nieuwe regels opslaan",
"save-the-new-title": "Nieuwe titel opslaan",
"simple-editor": "Simpele editor",
"title-of-the-poll": "Titel van de poll",
"voters-email-addresses-are-collected": "",
"voters-email-addresses-are-collected-and-required": "",
"voters-email-addresses-are-collected-required-and-verified": "",
"voters-email-addresses-are-not-collected": "",
"votes-and-comments-are-locked": "Stemmen en opmerkingen zijn uitgeschakeld",
"votes-protected-by-password": "Stemmen beveiligd met een wachtwoord",
"all-voters-can-modify-any-vote": "Alle stemmers kunnen elke stem aanpassen",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Het gebruik van een poll ID kan de toegang tot de poll gemakkelijker maken voor ongewenste personen. Het is aangeraden om een wachtwoord in te stellen.",
"collect-voters-email-addresses": "",
"Confirmation": "Bevestiging",
"customize-the-url": "Link verpersoonlijken",
"email-addresses-are-collected-but-not-required": "",
"email-addresses-are-not-collected": "",
"email-addresses-are-required": "",
"email-addresses-are-required-and-verified": "",
"go-to-step-2": "Ga naar stap 2",
"limit-the-amount-of-voters-per-option": "Limiteer het aantal stemmen per optie",
"more-informations-here": "Meer informatie is hier te vinden:",
"only-the-poll-maker-can-see-the-poll-results": "Alleen degene die de poll aangemaakt heeft kan de resultaten zien",
"optional-parameters": "Optionele parameters",
"Permissions": "Rechten",
"poll-creation-1-of-3": "Poll aanmaken (1 van 3)",
"poll-link": "Poll ID",
"poll-title": "Poll titel",
"receive-an-email-for-each-new-comment": "Ontvang een email bij elke nieuwe opmerking",
"receive-an-email-for-each-new-vote": "Ontvang een email bij elke nieuwe stem",
"required-fields-cannot-be-left-blank": "Verplichte velden kunnen niet leeg blijven.",
"the-identifier-can-contain-letters-numbers-and-dashes": "(mag letters, cijfers en streepjes bevatten)",
"the-results-are-publicly-visible": "De resultaten zijn zichtbaar zonder wachtwoord",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Om je beschrijving aantrekkelijker te maken, kun je het Markdown formaat gebruiken.",
"use-a-password-to-restrict-access": "Toegang tot poll beperken met een paswoord",
"value-max": "Maximum waarde",
"voters-can-modify-their-own-vote-themselves": "Stemmers kunnen hun eigen stem aanpassen",
"votes-cannot-be-modified": "Stemmen kunnen niet worden aangepast",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Waarschuwing: Iedereen kan de e-mailadressen van alle stemmers zien, aangezien iedereen alle stemmen kan aanpassen. Je kan best de toegangsregels beperken.",
"you-are-in-the-poll-creation-section": "Je bent in het onderdeel poll aanmaken.",
"you-can-enable-or-disable-the-editor-at-will": "Je kan de editor aan of afzetten wanneer je dat wilt.",
"votes-per-option": "stemmen per optie",
"go-to-step-3": "Ga naar stap 3",
"return-to-step-1": "Terug naar stap 1",
"add-a-choice": "Voeg een keuze toe",
"add-a-link-or-an-image": "Voeg een link of plaatje toe",
"alternative-text": "Alternatieve tekst",
"links-or-images-can-be-included-using": "Links of plaatjes kan je opnemen door gebruik te maken van",
"markdown-syntax": "de Markdown syntax",
"poll-options-2-of-3": "Poll keuzes (2 van 3)",
"remove-a-choice": "Verwijder een keuze",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Deze velden zijn optioneel. Je kan een link of een plaatje toevoegen of allebei.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Om een poll te maken, moet je tenminste twee keuzes geven.",
"url-of-the-image": "URL van het plaatje",
"you-can-add-or-remove-choices-with-the-buttons": "Je kan keuzes verwijderen of toevoegen met deze knoppen",
"add-a-day": "Voeg een dag toe",
"add-a-time-slot": "Voeg een tijd toe",
"choose-dates-for-your-poll": "Kies de datums voor je datumprikker",
"copy-times-from-the-first-day": "Kopieer de tijden van de eerste dag",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Voor elke geselecteerde dag kan je tijden voorstellen. (Bijvoorbeeld 8h, 8:30, 8h-10h, avond, enz.)",
"poll-dates-2-of-3": "Te prikken datums (2 van 3)",
"remove-a-day": "Verwijder een dag",
"remove-a-time-slot": "Verwijder een tijd",
"remove-all-days": "Verwijder alle dagen",
"remove-all-times": "Verwijder alle tijden",
"remove-this-day": "Verwijder deze dag",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Om een datum te prikken, moet je tenminste twee keuzes geven. (Bijvoorbeeld twee tijden op één dag of twee verschillende dagen).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Je kan extra dagen of tijden toevoegen en verwijderen met deze knoppen",
"back-to-step-2": "Terug naar stap 2",
"confirm-the-creation-of-your-poll": "Bevestig het aanmaken van je poll",
"create-the-poll": "Maak de poll aan",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Vervaldatum:",
"list-of-options": "Lijst van keuzes",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Als je het aanmaken van de poll hebt bevestigd, wordt je doorgestuurd naar de beheerpagina.",
"removal-date-and-confirmation-3-of-3": "Verwijderdatum en bevestiging (3 van 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Daarna ontvang je twee mails: één met de link naar je poll, die je naar de deelnemers kan sturen, de andere met een link naar de beheerpagina.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Je kunt een specifieke vervaldatum voor de poll opgeven.",
"your-poll-will-automatically-be-archived": "Je poll wordt automatisch gearchiveerd",
"your-poll-will-be-automatically-archived-in-x-days": "Je poll wordt over %d dagen automatisch gearchiveerd.",
"after-the-last-date-of-your-poll": "na de laatste datum van je poll.",
"version-x": "",
"add-a-column": "Kolom toevoegen",
"adding-a-column": "Een kolom toevoegen",
"all-comments-deleted": "Alle opmerkingen verwijderd",
"all-votes-deleted": "Alle stemmen verwijderd",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Als pollbeheerder kan je alle regels van de poll wijzigen met deze knop",
"back-to-the-poll": "Terug naar de poll",
"choice-added": "Keuze toegevoegd",
"collect-the-emails-of-the-polled-users-for-the-choice": "Verzamel de e-mailadressen van de ondervraagde gebruikers voor de optie",
"column-deleted": "Kolom verwijderd",
"comment-deleted": "Opmerking verwijderd",
"confirm-removal-of-all-comments": "Bevestig het verwijderen van alle opmerkingen",
"confirm-removal-of-all-votes": "Bevestig het verwijderen van alle stemmen",
"confirm-removal-of-the-column": "Bevestig de verwijdering van deze kolom.",
"confirm-removal-of-your-poll": "Bevestig het verwijderen van de poll",
"delete-poll": "",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Tenslotte kan je de eigenschappen van deze poll wijzigen, zoals titel, opmerkingen of je emailadres.",
"keep-comments": "Behoud de opmerkingen",
"keep-the-comments": "Behoud de opmerkingen",
"keep-the-poll": "Behoud de poll",
"keep-the-votes": "Behoud de stemmen",
"keep-this-poll": "Behoud deze poll",
"keep-votes": "Behoud de stemmen",
"poll-fully-deleted": "Poll volledig verwijderd",
"poll-saved": "Poll opgeslagen",
"remove-column": "Kolom verwijderen",
"remove-the-comments": "Verwijder de opmerkingen",
"remove-the-votes": "Verwijder de stemmen",
"the-poll-was-created": "De poll is aangemaakt.",
"vote-added": "",
"vote-deleted": "Stem verwijderd",
"vote-updated": "",
"you-can-add-a-new-scheduling-date-to-your-poll": "Je kan een nieuwe datum toevoegen aan je poll.",
"your-poll-has-been-removed": "Je poll is verwijderd!",
"and-add-a-new-column-with": "en voeg een nieuwe kokom toe met",
"remove-a-column-or-a-line-with": "verwijder een kolom of regel met",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "",
"deletion-date": "Verwijderdatum:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Als je wilt stemmen in deze poll, moet je je naam ingeven, een keuze maken en indienen door op de bewaar-knop op het einde van de lijn te klikken.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "De beheerder heeft deze poll gesloten. Stemmen en opmerkingen zijn bevroren, je kunt niet meer deelnemen.",
"the-poll-has-expired-it-will-soon-be-deleted": "De poll is verlopen, hij wordt binnenkort verwijderd.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Je stem is opgeslagen. Je hebt deze persoonlijke link nodig om je stem te kunnen wijzigen."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Creatz un sondatge",
"define-dates-or-subjects-to-choose-from": "Determinatz las datas o los tèmas a causir",
"discuss-and-make-a-decision": "Charratz e prenètz vòstra decision",
"do-you-want-to": "Volètz",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate es un servici en linha que permet dorganizar un rendètz-vos o de prene de decisions rapidament e simplament. Cap dinscripcion es pas demandada.",
"here-is-how-it-works": "Vaquí cossí fonciona:",
"send-the-poll-link-to-your-friends-or-colleagues": "Mandatz lo ligam del sondatge a vòstres amics o companhs",
"what-is-framadate": "Primièrs passes",
"view-an-example": "veire un example?",
"cecill-b-license": "licéncia CeCILL-B",
"framadate-is-licensed-under-the": "Es regit per la",
"framadate-was-initially-based-on": "Framadate es inicialament basat sus",
"the-software": "Lo logicial",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Aqueste logicial requesís lactivacion de JavaScript e dels cookies. Es compatible amb los navegators seguents :",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "un logicial desvolopat per lUniversitat dEstrasborg. Uèi son desvolopament es fach per lassociacion Framasoft.",
"grow-your-own": "Cultivatz vòstre òrt",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Se volètz installar aqueste logicial per vòstra pròpia utilizacion e aital aver mai dautonomia, nos podètz ajudar sus:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "Per participar al desvolopament del logicial, prepausar de milhoraments o simplament lo telecargar, anatz sus",
"the-development-site": "lo site de desvolopament",
"Actions": "Accions",
"Administration": "Administracion",
"Author": "Autor",
"back-to-administration": "Tornar a ladministracion",
"change-the-poll": "Modificar lo sondatge",
"Email": "Corrièl",
"Executed": "Executadas",
"expiry-date": "Data dexpiracion",
"Fail": "Fracàs",
"failed": "Fracassat:",
"Format": "Format",
"Installation": "Installation",
"Logs": "Istoric",
"Migration": "Migracion",
"Nothing": "Res",
"pages": "Paginas:",
"poll-id": "ID sondatge",
"poll-deleted": "Sondatge suprimit",
"Polls": "Sondatges",
"Purge": "Purga",
"purge-the-polls": "Purgar los sondatges",
"purged": "Purgats:",
"see-the-poll": "Veire lo sondatge",
"skipped": "Passat:",
"Status": "Estatuts",
"succeeded": "Capitat:",
"Success": "Capitada",
"Summary": "Resumit",
"Title": "Títol",
"Votes": "Vòtes",
"Waiting": "En espèra",
"polls-in-the-database-at-this-time": "sondatges dins la banca de donadas actualament",
"check-again": "Tornar verificar",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Mercés de pensar a activar lextension PHP OpenSSL per milhorar la seguritat.",
"consider-setting-the-date-timezone-in-php-ini": "Mercés de far cas a la definicion de date.timezone dins lo php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Agachatz de configurar « session.cookie_httponly = 1 » dins de vòstre php.ini o ajustatz « php_value session.cookie_httponly 1 » a vòstre .htaccess per empachar daccedir als cookies amb lo Javascript.",
"continue-the-installation": "Contunhar linstallacion",
"cookies-are-served-from-http-only": "Los cookies son pas que fornits en HTTP.",
"installation-checking": "Verificacions de linstallacion",
"openssl-extension-loaded": "Lextension PHP OpenSSL es cargada.",
"php-intl-extension-is-enabled": "Lextension PHP Intl es activada.",
"php-version-x-is-enough-needed-at-least-php-x": "Version de PHP %s sufisenta (Cal almens PHP %s).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Lo dorsièr del fichièr de configuracion (%s) es pas accessible en escritura e lo fichièr de configuracion (%s) existís pas.",
"the-config-file-directory-x-is-writable": "Lo dorsièr del fichièr de configuracion (%s) es accessible en escritura.",
"the-config-file-exists": "Lo fichièr de configuracion existís.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Lo dorsièr de compilacion dels modèls (%s) existís pas dins \"%s\". Ensajatz lo processús dinstallacion tornamai.",
"the-template-compile-directory-x-is-not-writable": "Lo dorsièr de compilacion dels modèls (%s) es pas accessible en escritura.",
"the-template-compile-directory-x-is-writable": "Lo dorsièr de compilacion dels modèls (%s) es accessible en escritura.",
"you-need-to-enable-the-php-intl-extension": "Vos cal activar lextension PHP Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Vòstra version de PHP (%s) es tròp vièlha. Aquesta aplicacion a besonh de PHP %s almens.",
"date-timezone-is-set": "date.timezone es definit.",
"add-a-comment-to-the-poll": "Apondre un comentari al sondatge",
"Comment": "Vòstre comentari",
"comment-saved": "Comentari apondut",
"Comments": "Comentaris dels sondats",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Picatz vòstre nom e comentari den primièr per mandar lo formulari",
"remove-comment": "Suprimir lo comentari",
"submit-comment": "Mandar lo comentari",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%d/%m/%Y",
"a-e": "%a %e",
"m-x-y-h-m": "%d/%m/%Y %H:%M",
"add-range-dates": "Apondre un interval de datas",
"end-date": "Data de fin",
"start-date": "Data de debuta",
"Y-m-d": "d/m/Y",
"you-can-select-at-most-4-months": "Podètz pas causir mai de 4 meses",
"yyyy-mm-dd": "dd/mm/yyyy",
"yyyy-mm-dd-for-humans": "jorn/mes/annada",
"edit-link-for-poll-x": "Ligam de modificacion del sondatge \"%s\"",
"here-is-the-link-for-editing-your-vote": "Vaquí lo ligam per modificar vòstre vòte:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Se volètz pas perdre vòstre ligam personalizat, podètz vos lo enviar per corrièl.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Mercés desperar encara %d segondas abans que poscam vos mandar lo corrièl, puèi tornatz ensajar.",
"REMINDER": "RECÒRD",
"Send": "Mandar",
"the-email-address-is-not-correct": "Corrièl incorrècte.",
"your-reminder-has-been-successfully-sent": "Vòstre recòrd es ben estat mandat!",
"adding-vote-failed": "Fracàs de lapondon dun vòte",
"cant-create-an-empty-column": "Impossible de crear una colomna voida.",
"cant-create-the-config-php-file-in-x": "Impossible de crear lo fichièr config.php dins '%s'.",
"comment-failed": "Fracàs del comentari",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Los cookies son desactivats sus vòstre navegador. Lor activacion es requesida per la creacion dun sondatge.",
"enter-a-name": "Picatz un nom",
"enter-a-name-and-a-comment": "Mercé de garnir los dos camps!",
"enter-a-title": "Picatz un títol",
"enter-an-email-address": "Picatz una adreça de messatjariá",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Error pel limit de vòtes: la valor deu èsser un entièr màger que 0",
"error": "Error!",
"failed-to-delete-all-comments": "Fracàs de la supression de totes los comentaris",
"failed-to-delete-all-votes": "Fracàs de la supression de totes los vòtes",
"failed-to-delete-column": "Fracàs de la supression de colomna",
"failed-to-delete-the-comment": "Fracàs de la supression del comentari",
"failed-to-delete-the-poll": "Fracàs de la supression del sondatge",
"failed-to-delete-the-vote": "Fracàs de la supression del vòte!",
"failed-to-insert-the-comment": "Fracàs de lapondon del comentari!",
"failed-to-save-poll": "Fracàs denregistrament del sondatge",
"forbidden": "Defendut!",
"GenericErrorPollCreation": "Oo non ! Vòstre sondatge a pas pogut èsser enregistrat. O planhèm. Mercés de tornar ensajar.",
"identifier-is-already-used": "Lidentificant es ja utilizat",
"if-you-quit-now-your-changes-will-be-lost": "Se quitatz ara, vòstras modificacions seràn perdudas.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "Javascript es desactivat sus vòstre navegador. Son activacion es requesida per la creacion dun sondatge.",
"missing-values": "Mancan de valors",
"no-polls-found": "Cap de sondatge pas trobat",
"password-is-empty": "Lo senhal es void.",
"passwords-do-not-match": "Los senhals son pas los meteisses.",
"poll-has-been-updated-before-you-vote": "Lo sondatge es estat mes a jorn abans vòstre vòte",
"something-has-gone-wrong": "I a quicòm que truca...",
"something-is-wrong-with-the-format": "I a quicòm que truca amb lo format",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Quicòm a trucat amb lo format: las URL personalizadas devon èsser compausadas de caractèrs alfanumerics e de jonhents longs.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Quicòm a trucat amb lo format: lo nom deu pas conténer despacis avant nimai aprèp",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Ladreça picada es pas corrècta!Cal una adreça valida (per exemple r.stallman@outlock.com) per recebre lo ligam cap al sondatge.",
"the-column-already-exists": "La colomna existís ja",
"the-name-is-invalid": "Lo nom es pas valid.",
"the-name-youve-chosen-already-exists-in-this-poll": "Lo nom quavètz causit existís ja!",
"there-is-a-problem-with-your-choices": "I a un problèma amb vòstras causidas",
"this-identifier-is-not-allowed": "Lidentificant es pas autorizat",
"this-poll-doesnt-exist": "Aqueste sondatge existís pas!",
"unable-to-connect-to-database": "Impossible de se connectar a la banca de donadas",
"update-vote-failed": "La mesa a jorn del vòte a fracassat",
"you-already-voted": "Avètz ja votat",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Podètz pas crear de sondatges amb de resultats amagats amb las opcions dedicion seguentas: ",
"you-cant-select-more-than-x-dates": "Podètz pas causir mai de %d datas",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Avètz pas garnit la primièra seccion de la creacion del sondatge, o vòstra session a expirat.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Vòstre vòte es pas estat pres en compte, per çò que qualquun a votat quaquel temps e aquò a creat un conflict amb vòstras causidas e las condicions de sondatge. Mercés de tornar ensajar.",
"Address": "Adreça",
"created-polls": "Sondatges creats",
"have-a-good-day": "Bona jornada!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Vaquí la lista dels sondatges que gerissètz sus %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Se sètz pas a lorigina daquesta accion e se pensatz ques un abús, mercés de contactar ladministrator a %s.",
"its-address": "La seuna adreça",
"last-access-date": "Data de darrièr accès",
"list-of-your-polls": "Lista de vòstres sondatges",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS:aqueste corrièl es estat mandat perque avètz o qualquun mai a demandat la recuperacion dels sondatges creats amb aquesta adreça de corrièl.",
"polls-saved-inside-this-browser": "Sondatges enregistrats dins aqueste navegador",
"polls-sent": "Sondatges mandats",
"remove-all-my-polls-from-this-browsers-index": "Levar totes mos sondatges de lensenhador del navegador",
"remove-poll-from-index": "Levar lo sondatge de lensenhador",
"send-me-my-polls": "Mandar mos sondatges",
"send-my-polls-by-email": "Enviar mos sondatges per corrièl",
"the-date-you-created-or-last-accessed-the-poll": "La data quavètz creat o accedit al sondatge",
"the-title-of-the-poll": "Lo títol del sondatge",
"there-are-no-polls-saved-inside-your-browser-yet": "Vòstre navegador a pas cap de sondatges enregistrats",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Per suprimir aquesta donada clicatz lescobilhièr de la linha correspondenta o clicatz lopcion «suprimir mon ensenhador de sondatge». Aquò suprimirà pas vòstres sondatges.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Per vos ajudar a retrapar vòstres sondatges precedents, salvagardam cada sondatge que creatz o quaccedissètz dins vòstre navegador. Aquestas donadas son enregistradas pas que dins aqueste navigador. Las donadas seguentas seràn salvagardadas:",
"visited-polls": "Sondatges consultats",
"in-the-format-name-mail-com": "(al format nom@mail.com)",
"Add": "Apondre",
"Back": "Tornar",
"back-to-the-homepage-of": "Tornar a la pagina dacuèlh de",
"Cancel": "Anullar",
"Choice": "Causida",
"Classic": "Classic",
"Close": "Tampar",
"create-your-own-polls": "Creatz vòstres sondatges",
"creation-date": "Data de creacion:",
"Date": "Data",
"Day": "Jorn",
"Description": "Descripcion",
"Edit": "Modificar",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate es un servici en linha que permet dorganizar un rendètz-vos o de prene de decisions rapidament e simplament.",
"Home": "Acuèlh",
"Information": "Informacions",
"legend": "Legenda:",
"Link": "Ligam",
"Markdown": "Markdown",
"Next": "Contunhar",
"No": "Non",
"page-generated-in": "Pagina generada en",
"Poll": "Sondatge",
"Remove": "Suprimir",
"Save": "Enregistrar",
"Search": "Cercar",
"Time": "Ora",
"under-reserve": "Amb resèrva",
"Validate": "Validar",
"Yes": "Òc",
"your-email-address": "Vòstra adreça",
"your-name": "Vòstre nom",
"days": "jorns",
"for": "per",
"months": "meses",
"seconds": "segondas",
"vote": "vòte",
"votes": "vòtes",
"with": "amb",
"make-a-standard-poll": "Crear un sondatge classic",
"schedule-an-event": "Crear un sondatge especial datas",
"where-are-my-polls": "Ont son mos sondatges?",
"administrator-mail-address": "Adreça de corrièl de laplicacion",
"application-name": "Nom de laplicacion",
"clean-url": "URL clars",
"database-driver": "Pilòt de la basa de donadas",
"database-hostname": "Nom dòst de la basa de donadas",
"database-name": "Nom de la basa de donadas",
"database-port": "Pòrt de la basa de donadas",
"default-language": "Lenga per defaut",
"General": "General",
"Install": "Installar",
"migration-table": "Taula de migracion",
"Password": "Senhal",
"Prefix": "Prefixe",
"respond-to-mail-address": "Adreça de responsa",
"User": "Utilizaire",
"change-language": "Cambiar la lenga",
"select-language": "Seleccionar la lenga",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "« La rota es longa, mai lo camin es liure… »<br/>Framasoft viu solament amb vòstres dons (quòm pòt tirar de vòstres impòstes).<br/> Mercé davança pel vòstre sosten https://soutenir.framasoft.org",
"message-for-the-author": "Messatge per lautor",
"notification-of-poll-x": "Notificacion dun sondatge:%s",
"participant-link": "Per difusion als sondats",
"poll-participation-x": "Participacion al sondatge:%s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Qualquun ven de modificar vòstre sondatge accessible amb lo ligam seguent <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Qualquun ven de suprimir vòstre sondatge \"%s\".",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Mercés de vòstra participacion al sondatge al ligam seguent",
"thank-you-for-your-trust": "Mercé per vòstra fisança.",
"this-is-the-message-to-forward-to-the-poll-participants": "Aquò es lo messatge que serà mandat als sondats.<br/>Podètz ara transmetre aqueste messatge a totas las personas susceptiblas de participar al vòte.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Aqueste messatge deu PAS èsser mandat als participants. Vos cal lo gardar privat.<br/><br/>Podètz modificar lo sondatge amb lo ligam seguent",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "ven de votar.<br/>Podètz tornar a vòstre sondatge amb lo ligam seguent",
"has-just-created-a-poll-called": "ven de crear un sondatge titolat",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "ven de metre a jorn un vòte.<br/>Podètz tornar a vòstre sondatge amb lo ligam seguent",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "ven de redigir un comentari.<br/>Podètz tornar a vòstre sondatge amb lo ligam seguent",
"thank-you-for-your-understanding": "Mercés de tornar dins un momenton.",
"the-application": "Laplicacion",
"is-currently-under-maintenance": "es en mantenença.",
"submit-access": "Accedir",
"wrong-password": "Senhal incorrècte",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Vos cal donar lo senhal per participar al sondatge.",
"you-have-to-provide-a-password-to-access-the-poll": "Vos cal donar lo senhal per aver accès a aqueste sondatge.",
"x-option": "opcion %s",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Tot lo monde poirà veire vòstra adreça de corrièl aprèp vòstre vòte",
"best-choice": "Milhora causida",
"best-choices": "Milhoras causidas",
"Chart": "Grafic",
"display-the-chart-of-the-results": "Afichar lo grafic dels resultats",
"edit-line-x": "Modificar la linha:%s",
"link-to-edit-this-particular-line": "Ligam per modificar aquesta linha en particular",
"remove-line": "Suprimir la linha:",
"save-choices": "Enregistrar las causidas",
"scroll-to-the-left": "Far desfilar a man esquèrra",
"scroll-to-the-right": "Far desfilar a man drecha",
"the-current-best-choice-is": "Pel moment, la causida amb lo mai de vòtes es:",
"the-current-best-choices-are": "Pel moment, las causidas amb lo mai de vòtes son:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Lo ligam per modificar aquesta linha en particular es estada copiada al quichapapièrs!",
"Total": "Soma",
"vote-no-for": "Votar « non » per",
"vote-yes-for": "Votar « òc » per",
"votes-under-reserve-for": "Vòtes amb resèrva per",
"polled-user": "votant",
"polled-users": "votants",
"admin-link-for-the-poll": "Ligam dadministracion del sondatge",
"cancel-the-description-edit": "Anullar lo cambiament de descripcion",
"cancel-the-email-address-edit": "Anullar lo cambiament dadreça",
"cancel-the-expiration-date-edit": "Anullar lo cambiament de data dexpiracion",
"cancel-the-name-edit": "Anullar lo cambiament dautor",
"cancel-the-rules-edit": "Anullar lo cambiament de permissions",
"cancel-the-title-edit": "Anullar lo cambiament de títol",
"creator-of-the-poll": "Autor del sondatge",
"edit-name": "Modificacion de lautor",
"edit-the-description": "Modificar la descripcion",
"edit-the-email-address": "Modificar ladreça",
"edit-the-expiry-date": "Modificar la data dexpiracion",
"edit-the-poll-rules": "Modificar las permissions del sondatge",
"edit-title": "Modificar lo títol",
"export-to-csv": "Exportar en CSV",
"no-password": "Pas cap de senhal",
"only-votes-are-protected": "Sols los vòtes son protegits",
"password-protected": "Protegit per senhal",
"poll-rules": "Permissions del sondatge",
"Print": "Imprimir",
"public-link-to-the-poll": "Ligam public del sondatge",
"remove-all-comments": "Suprimir totes los comentaris",
"remove-all-votes": "Suprimir totes los vòtes",
"remove-password": "Levar lo senhal",
"remove-the-poll": "Suprimir lo sondatge",
"results-are-hidden": "Los resultats son amagats",
"results-are-visible": "Los resultats son visibles",
"rich-editor": "Editor avençat",
"save-the-description": "Enregistrar la descripcion",
"save-the-email-address": "Enregistrar ladreça",
"save-the-new-expiration-date": "Enregistrar la data dexpiracion",
"save-the-new-name": "Enregistrar lautor",
"save-the-new-rules": "Enregistrar las permissions novèlas",
"save-the-new-title": "Enregistrar lo novèl títol",
"simple-editor": "Editor simple",
"title-of-the-poll": "Títol del sondatge",
"voters-email-addresses-are-collected": "Las adreças dels votants son reculhidas",
"voters-email-addresses-are-collected-and-required": "Las adreças dels votants son reculhidas e necessàrias",
"voters-email-addresses-are-collected-required-and-verified": "Las adreças dels votants son reculhidas, necessàrias e verificadas",
"voters-email-addresses-are-not-collected": "Las adreças dels votants son pas reculhidas",
"votes-and-comments-are-locked": "Los vòtes e comentaris son clavats",
"votes-protected-by-password": "Vòtes protegits per senhal",
"all-voters-can-modify-any-vote": "Totes los votants pòdon modificar lors vòtes",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "En utilizant un identificant aquò pòt facilitar laccès a aqueste sondatge per de personas pas desiradas. Es recomandat do protegir amb un senhal.",
"collect-voters-email-addresses": "Reculhir las adreças dels votants",
"Confirmation": "Confirmacion",
"customize-the-url": "Personalizar lo ligam",
"email-addresses-are-collected-but-not-required": "Las adreças dels votants son reculhidas mas pas necessàrias",
"email-addresses-are-not-collected": "Las adreças dels votants son pas reculhidas",
"email-addresses-are-required": "Las adreças de corrièl son necessàrias",
"email-addresses-are-required-and-verified": "Las adreças de corrièl son necessàrias e verificadas",
"go-to-step-2": "Anar a letapa 2",
"limit-the-amount-of-voters-per-option": "Limitar lo nombre de votants per opcion",
"more-informations-here": "Mai dinformacion aquí :",
"only-the-poll-maker-can-see-the-poll-results": "Solament lo creator del sondatge pòt veire los resultats",
"optional-parameters": "Paramètres opcionals",
"Permissions": "Autorizacions",
"poll-creation-1-of-3": "Creacion de sondatge (1 sus 3)",
"poll-link": "Identificant",
"poll-title": "Títol del sondatge",
"receive-an-email-for-each-new-comment": "Recebre un messatge per cada comentari",
"receive-an-email-for-each-new-vote": "Recebre un messatge per cada participacion",
"required-fields-cannot-be-left-blank": "Mercés de garnir totes los formularis obligatòris, marcats amb una *.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Lidentificant pòt contenir de letras, de chifras e de jonhents \"-\".",
"the-results-are-publicly-visible": "Los resultats son visibles sens senhal",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Per dire de far venir la descripcion mai bèla, podètz utilizar la sintaxi Markdown.",
"use-a-password-to-restrict-access": "Emplegar un senhal per restrénher laccès al sondatge",
"value-max": "Valor maximala",
"voters-can-modify-their-own-vote-themselves": "Cadun pòt modificar son pròpri vòte",
"votes-cannot-be-modified": "Cap de vòte pòt pas èsser modificat",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Avertiment: qual que siá pòt veire las adreças dels votants del moment que totes los votants pòdon modificar quin que siá vòte. Vos caldriá restrénher las autorizacions.",
"you-are-in-the-poll-creation-section": "Avètz causit de crear un sondatge novèl.",
"you-can-enable-or-disable-the-editor-at-will": "Podètz activar o desactivar leditor coma volgatz.",
"votes-per-option": "votacion per opcion",
"go-to-step-3": "Anar a letapa 3",
"return-to-step-1": "Tornar a letapa 1",
"add-a-choice": "Apondre una causida",
"add-a-link-or-an-image": "Apondre un ligam o un imatge",
"alternative-text": "Tèxte alternatiu",
"links-or-images-can-be-included-using": "Es possible dinserir de ligams o dimatges en emplegant",
"markdown-syntax": "la sintaxi Markdown",
"poll-options-2-of-3": "Causida dels tèmas (2 sus 3)",
"remove-a-choice": "Suprimir la darrièra causida",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "Aquestes camps son facultatius. Podètz apondre un ligam, un imatge o los dos.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Per crear un sondatge classic, vos cal prepausar almens doas causidas diferentas.",
"url-of-the-image": "URL de limatge",
"you-can-add-or-remove-choices-with-the-buttons": "Podètz apondre o suprimir de causidas mai amb los botons",
"add-a-day": "Ajustar un jorn",
"add-a-time-slot": "Ajustar un orari",
"choose-dates-for-your-poll": "Causissètz las datas de vòstre sondatge",
"copy-times-from-the-first-day": "Reportar los oraris del primièr jorn suls autres jorns",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Per cada jorn seleccionat avètz la possibilitat de causir o non doras de reünion (per exemple:\"8o\", \"8o30\", \"8o-10o\", \"ser\", etc.)",
"poll-dates-2-of-3": "Causida de las datas (2 sus 3)",
"remove-a-day": "Suprimir lo darrièr jorn",
"remove-a-time-slot": "Suprimir lo darrièr orari",
"remove-all-days": "Suprimir totes los jorns",
"remove-all-times": "Suprimir totes los oraris",
"remove-this-day": "Suprimir aqueste jorn",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "Per crear un sondatge especial datas vos cal prepausar almens doas causidas (dos oraris per la meteissa jornada o dos jorns).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Podètz apondre o suprimir de jorns e oraris suplementaris amb los botons",
"back-to-step-2": "Tornar a letapa 2",
"confirm-the-creation-of-your-poll": "Confirmatz la creacion de vòstre sondatge",
"create-the-poll": "Crear lo sondatge",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Data de mesa en archiu:",
"list-of-options": "Lista de vòstras causidas",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "Un còp la creacion del sondatge confirmada, seretz redirigit automaticament cap a vòstre sondatge.",
"removal-date-and-confirmation-3-of-3": "Data dexpiracion e confirmacion (3 sus 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Daquel temps, recebretz dos corrièls:un amb lo ligam cap a vòstre sondatge per o mandar als sondats, lautre amb lo ligam per la pagina dadministracion del sondatge.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Podètz decidir duna data de mesa en archiu mai pròcha.",
"your-poll-will-automatically-be-archived": "Vòstre sondatge serà archivat automaticament",
"your-poll-will-be-automatically-archived-in-x-days": "Vòstre sondatge serà archivat automaticament dins %d jorns.",
"after-the-last-date-of-your-poll": "aprèp lo darrièr jorn del sondatge.",
"version-x": "Version %s",
"add-a-column": "Apondre una colomna",
"adding-a-column": "Apondon de colomna",
"all-comments-deleted": "Totes los comentaris son estats suprimits",
"all-votes-deleted": "Totes los vòtes son estats suprimits",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "En qualitat dadministrator podètz modificar totas las linhas daqueste sondatge amb aqueste boton",
"back-to-the-poll": "Tornar al sondatge",
"choice-added": "Causida aponduda",
"collect-the-emails-of-the-polled-users-for-the-choice": "Collècta de las adreças dels votants per la causida",
"column-deleted": "Colomna suprimida",
"comment-deleted": "Comentari suprimit",
"confirm-removal-of-all-comments": "Confirmar la supression de totes los comentaris daqueste sondatge",
"confirm-removal-of-all-votes": "Confirmar la supression de totes los vòtes daqueste sondatge",
"confirm-removal-of-the-column": "Confirmar la supression daquesta colomna.",
"confirm-removal-of-your-poll": "Confirmar la supression del sondatge",
"delete-poll": "Suprimir lo sondatge",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Per acabar podètz tanben modificar las informacions a prepaus daqueste sondatge coma lo títol, los comentaris o vòstre corrièl.",
"keep-comments": "Gardar los comentaris",
"keep-the-comments": "Gardar los comentaris",
"keep-the-poll": "Gardar lo sondatge",
"keep-the-votes": "Gardar los vòtes",
"keep-this-poll": "Gardar aqueste sondatge",
"keep-votes": "Gardar los vòtes",
"poll-fully-deleted": "Sondatge totalament suprimit",
"poll-saved": "Sondatge enregistrat",
"remove-column": "Suprimir la colomna",
"remove-the-comments": "Suprimir los comentaris",
"remove-the-votes": "Suprimir los vòtes",
"the-poll-was-created": "Lo sondatge es estada creat.",
"vote-added": "Vòte apondut",
"vote-deleted": "Vòte suprimit",
"vote-updated": "Vòte mes a jorn",
"you-can-add-a-new-scheduling-date-to-your-poll": "Podètz apondre una data a vòstre sondatge.",
"your-poll-has-been-removed": "Vòstre sondatge es estat suprimit!",
"and-add-a-new-column-with": "E se avètz oblidat de picar una causida, podètz tornar apondre una colomna en clicant sus",
"remove-a-column-or-a-line-with": "escafar una colomna o una linha amb",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "Las adreças del monde que votèron «Se cal» per aquesta opcion:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "Las adreças del monde que votèron «Non» per aquesta opcion:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "Las adreças del monde que votèron «Òc» per aquesta opcion:",
"deletion-date": "Data de supression:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Se volètz votar per aqueste sondatge, avètz de donar vòstre nom, far una causida, e lenviar en seleccionar lo boton de salvagarda al cap de la linha.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Ladministrator a clavat aqueste sondatge. Los vòtes e comentaris son gelats, es pas mai possible de participar",
"the-poll-has-expired-it-will-soon-be-deleted": "Lo sondatge a expirat, serà lèu suprimit.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Vòstre vòte es estat enregistrat corrèctament, mas mèfi:aqueste sondatge permet ledicion de vòstre vòte solament amb lo ligam personalizat."
}

View File

@ -0,0 +1,427 @@
{
"create-a-poll": "Skapa en undersökning",
"define-dates-or-subjects-to-choose-from": "Ange datum eller ämnen att välja mellan",
"discuss-and-make-a-decision": "Diskutera och fatta ett beslut",
"do-you-want-to": "Vill du",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily-n": "Framadate är en webbtjänst för att planera ett möte eller fatta ett beslut snabbt och enkelt. Ingen registrering krävs.",
"here-is-how-it-works": "Så fungerar det:",
"send-the-poll-link-to-your-friends-or-colleagues": "Skicka undersökningens länk till dina vänner eller kollegor",
"what-is-framadate": "Vad är Framadate?",
"view-an-example": "se ett exempel?",
"cecill-b-license": "licensen CeCILL-B",
"framadate-is-licensed-under-the": "Framadate har gjorts tillgängligt under",
"framadate-was-initially-based-on": "Framadate baserades ursprungligen på",
"the-software": "Mjukvaran",
"this-software-needs-javascript-and-cookies-enabled-it-is-compatible-with-the-following-web-browsers": "Den här mjukvaran kräver att JavaScript och kakor är aktiverade. Den är kompatibel med följande webbläsare:",
"software-developed-by-the-university-of-strasbourg-these-days-it-is-developed-by-the-framasoft-assoc": "mjukvara utvecklad av Strasbourgs universitet. Idag utvecklas den av föreningen Framasoft.",
"grow-your-own": "Odla din egen",
"if-you-want-to-install-the-software-for-your-own-use-and-thus-increase-your-independence-we-can-help": "Om du vill installera mjukvaran för eget bruk och på så sätt öka din självständighet, kan vi hjälpa dig på:",
"to-participate-in-the-software-development-suggest-improvements-or-simply-download-it-please-visit": "För att delta i mjukvaruutvecklingen, föreslå förbättringar eller ladda ner den, kan du besöka",
"the-development-site": "utvecklingssidan",
"Actions": "Åtgärder",
"Administration": "Administration",
"Author": "Författa",
"back-to-administration": "Tillbaka till administration",
"change-the-poll": "Ändra undersökningen",
"Email": "E-post",
"Executed": "Utförd",
"expiry-date": "Sista datum",
"Fail": "Misslyckande",
"failed": "Misslyckades:",
"Format": "Format",
"Installation": "Installation",
"Logs": "Loggar",
"Migration": "Migrering",
"Nothing": "Ingenting",
"pages": "Sidor:",
"poll-id": "Undersöknings-id",
"poll-deleted": "Undersökning raderad",
"Polls": "Undersökningar",
"Purge": "Rensa",
"purge-the-polls": "Rensa undersökningarna",
"purged": "Rensad:",
"see-the-poll": "Visa undersökningen",
"skipped": "Hoppade över:",
"Status": "Status",
"succeeded": "Lyckades:",
"Success": "Lyckades",
"Summary": "Sammanfattning",
"Title": "Titel",
"Votes": "Röster",
"Waiting": "Väntar",
"polls-in-the-database-at-this-time": "undersökningar i databasen just nu",
"check-again": "Titta igen",
"consider-enabling-the-php-extension-openssl-for-increased-security": "Överväg att aktivera PHP-tillägget OpenSSL för ökad sökerhet.",
"consider-setting-the-date-timezone-in-php-ini": "Överväg att definiera date.timezone i php.ini.",
"consider-setting-session-cookie-httponly-1-inside-your-php-ini-or-add-php-value-session-cookie-httpo": "Överväg att sätta ”session.cookie_httponly = 1” i din php.ini-fil eller att lägga till ”php_value session.cookie_httponly 1” i din .htaccess så att kakor inte kan läsas med Javascript.",
"continue-the-installation": "Fortsätt med installationen",
"cookies-are-served-from-http-only": "Kakor servas endast över HTTP.",
"installation-checking": "Kontroll av installation",
"openssl-extension-loaded": "Tillägget OpenSSL har lästs in.",
"php-intl-extension-is-enabled": "PHP-tillägget Intl har aktiverats.",
"php-version-x-is-enough-needed-at-least-php-x": "PHP version %sär tillräckligt (PHP %s är minimum).",
"the-config-file-directory-x-is-not-writable-and-the-config-file-x-does-not-exists": "Konfigurationsfilens katalog (%s) går inte att skriva till och konfigurationsfilen (%s) existerar inte.",
"the-config-file-directory-x-is-writable": "Konfigurationsfilens katalog (%s) går att skriva till.",
"the-config-file-exists": "Konfigurationsfilen existerar.",
"the-template-compile-directory-x-doesnt-exist-in-x-retry-the-installation-process": "Katalogen för kompilerade mallar (%s) går inte att hitta i ”%s”. Försök att starta om installationsprocessen.",
"the-template-compile-directory-x-is-not-writable": "Katalogen för kompilerade mallar (%s) går inte att skriva till.",
"the-template-compile-directory-x-is-writable": "Katalogen för kompilerade mallar (%s) går att skriva till.",
"you-need-to-enable-the-php-intl-extension": "Du måste aktivera PHP-tillägget Intl.",
"your-php-version-x-is-too-old-this-application-needs-at-least-php-x": "Din version av PHP (%s) är för gammal. Den här applikationen kräver minst PHP %s.",
"date-timezone-is-set": "date.timezone är konfigurerad.",
"add-a-comment-to-the-poll": "Lägg till en kommentar till undersökningen",
"Comment": "Kommentera",
"comment-saved": "Kommentar sparad",
"Comments": "Kommentarer",
"enter-your-name-and-comment-prior-to-submitting-the-form": "Fyll i ditt namn och kommentar innan du skickar iväg formuläret",
"remove-comment": "Ta bort kommentar",
"submit-comment": "Skicka kommentar",
"a-e-b-y": "%A %e %B %Y",
"a-b-e-y": "%A %e %B %Y",
"b-y": "%B %Y",
"y-m-x": "%Y-%m-%d",
"a-e": "%a den %e",
"m-x-y-h-m": "%Y-%m-%d %H:%M",
"add-range-dates": "Lägg till datumspann",
"end-date": "Slutdatum",
"start-date": "Startdatum",
"Y-m-d": "åååå-mm-dd",
"you-can-select-at-most-4-months": "Du kan välja max fyra månader",
"yyyy-mm-dd": "åååå-mm-dd",
"yyyy-mm-dd-for-humans": "åååå-mm-dd-för-människor",
"edit-link-for-poll-x": "Redigeringslänk för undersökningen ”%s”",
"here-is-the-link-for-editing-your-vote": "Här är en länk för att redigera din röst:",
"if-you-dont-want-to-lose-your-personalized-link-we-can-send-it-to-you-by-email": "Om du inte vill bli av med din personliga länk, kan vi skicka dig den via e-post.",
"please-wait-x-seconds-before-we-can-send-an-email-to-you-then-try-again": "Vänta %s sekunder så att vi kan skicka ett e-postmeddelande till dig, och försök igen därefter.",
"REMINDER": "PÅMINNELSE",
"Send": "Skicka",
"the-email-address-is-not-correct": "E-postadressen stämmer inte.",
"your-reminder-has-been-successfully-sent": "Din påminnelse har skickats!",
"adding-vote-failed": "Kunde inte lägga till röst",
"cant-create-an-empty-column": "Kan inte skapa en tom kolumn.",
"cant-create-the-config-php-file-in-x": "Kan inte skapa filen config.php i '%s'.",
"comment-failed": "Kunde inte skicka kommentar",
"cookies-are-disabled-on-your-browser-they-are-required-to-be-able-to-create-a-poll": "Kakor är avaktiverade i din webbläsare men krävs för att kunna skapa en undersökning.",
"enter-a-name": "Ange ett namn",
"enter-a-name-and-a-comment": "Ange ett namn och en kommentar!",
"enter-a-title": "Ange en titel",
"enter-an-email-address": "Uppge en e-postadress",
"error-on-amount-of-votes-limitation-value-must-be-an-integer-greater-than-0": "Otillåten begränsning av antalet röster: Värdet måste vara ett heltal större än noll",
"error": "Fel!",
"failed-to-delete-all-comments": "Kunde inte radera samtliga kommentarer",
"failed-to-delete-all-votes": "Kunde inte radera samtliga röster",
"failed-to-delete-column": "Kunde inte radera kolumn",
"failed-to-delete-the-comment": "Kunde inte radera kommentaren",
"failed-to-delete-the-poll": "Kunde inte radera undersökningen",
"failed-to-delete-the-vote": "Kunde inte radera rösten!",
"failed-to-insert-the-comment": "Kunde inte lägga till kommentaren!",
"failed-to-save-poll": "Kunde inte spara undersökning",
"forbidden": "Förbjudet!",
"GenericErrorPollCreation": "GenericErrorPollCreation",
"identifier-is-already-used": "Identifieraren används redan",
"if-you-quit-now-your-changes-will-be-lost": "Om du avslutar nu kommer dina ändringar gå förlorade.",
"javascript-is-disabled-on-your-browser-it-is-required-to-create-a-poll": "JavaScript är avaktiverat i din webbläsare men krävs för att skapa en undersökning.",
"missing-values": "Saknade värden",
"no-polls-found": "Inga undersökningar funna",
"password-is-empty": "Lösenordet är tomt.",
"passwords-do-not-match": "Lösenorden stämmer inte överens.",
"poll-has-been-updated-before-you-vote": "Undersökningen har uppdaterats innan du lade din röst",
"something-has-gone-wrong": "Någonting har gått snett …",
"something-is-wrong-with-the-format": "Någonting är fel med formatet",
"something-is-wrong-with-the-format-customized-urls-should-only-consist-of-alphanumeric-characters-an": "Någonting är fel med formatet: Egna länkadresser får endast innehålla bokstäver, siffror och bindestreck.",
"something-is-wrong-with-the-format-name-shouldnt-have-any-spaces-before-or-after": "Någonting är fel med formatet: Namnet får inte börja eller sluta med blanksteg",
"the-address-is-not-correct-you-should-enter-a-valid-email-address-like-r-stallman-outlock-com-in-ord": "Adressen är ogiltig! Du måste uppge en giltig e-postadress (som r.stallman@outlock.com) för att kunna ta emot länken till din undersökning.",
"the-column-already-exists": "Kolumnen finns redan",
"the-name-is-invalid": "Namnet är ogiltigt.",
"the-name-youve-chosen-already-exists-in-this-poll": "Namnet du valt finns redan i den här undersökningen!",
"there-is-a-problem-with-your-choices": "Det finns något problem med dina val",
"this-identifier-is-not-allowed": "Den här identifieraren är inte tillåten",
"this-poll-doesnt-exist": "Den här undersökningen finns inte!",
"unable-to-connect-to-database": "Kunde inte ansluta till databasen",
"update-vote-failed": "Kunde inte uppdatera röst",
"you-already-voted": "Du har redan röstat",
"you-cant-create-a-poll-with-hidden-results-with-the-following-option": "Du kan inte skapa en undersökning med dolda resultat och följande inställningar: ",
"you-cant-select-more-than-x-dates": "Du kan inte välja fler än %d datum",
"you-havent-filled-the-first-section-of-the-poll-creation-or-your-session-has-expired": "Antingen har du inte fyllt i den första delen av processen för att skapa en undersökning eller så har din session gått ut.",
"your-vote-wasnt-counted-because-someone-voted-in-the-meantime-and-it-conflicted-with-your-choices-an": "Din röst räknades inte eftersom någon röstade under tiden och det stod i konflikt med dina val och undersökningens inställningar. Försök gärna igen.",
"Address": "Adress",
"created-polls": "Skapade undersökningar",
"have-a-good-day": "Ha en trevlig dag!",
"here-is-the-list-of-the-polls-that-you-manage-on-x": "Här är listan över de undersökningar du hanterar på %s:",
"if-you-werent-the-source-of-this-action-and-if-you-think-this-is-an-abuse-of-the-service-please-noti": "Om du inte står bakom den här åtgärden och tror det rör sig om missbruk av tjänsten, får du gärna kontakta administratören på %s.",
"its-address": "Dess adress",
"last-access-date": "Senaste åtkomstdatum",
"list-of-your-polls": "Lista över dina undersökningar",
"ps-this-email-has-been-sent-because-you-or-someone-else-asked-to-get-back-the-polls-created-with-you": "PS: det här meddelandet har skickats eftersom du, eller någon annan, har bett om att få tillbaka de undersökningar som har skapats med din e-postadress.",
"polls-saved-inside-this-browser": "Undersökningar sparade i den här webbläsaren",
"polls-sent": "Undersökningar skickade",
"remove-all-my-polls-from-this-browsers-index": "Ta bort alla mina undersökningar från den här webbläsarens index",
"remove-poll-from-index": "Ta bort undersökning från index",
"send-me-my-polls": "Skicka mina undersökningar till mig",
"send-my-polls-by-email": "Skicka mina undersökningar via e-post",
"the-date-you-created-or-last-accessed-the-poll": "Datumet då du skapade eller senast besökte undersökningen",
"the-title-of-the-poll": "Undersökningens titel",
"there-are-no-polls-saved-inside-your-browser-yet": "Det finns inga undersökningar sparade i din webbläsare än",
"to-delete-this-data-click-the-trashcan-on-the-according-line-or-click-the-delete-my-polls-index-opti": "Radera den här informationen genom att klicka på soptunnan på motsvarande rad eller välj menyalternativet ”Radera mina undersökningar från index”. Detta kommer inte radera dina undersökningar.",
"to-help-you-find-your-previous-polls-we-save-each-poll-you-create-or-access-inside-your-browser-this": "Vi sparar varje undersökning du skapar eller besöker i din webbläsare för att hjälpa dig hitta dina tidigare undersökningar. Den här informationen finns endast i din webbläsare. Följande kommer sparas:",
"visited-polls": "Besökta undersökningar",
"in-the-format-name-mail-com": "(på formatet namn@example.com)",
"Add": "Lägg till",
"Back": "Tillbaka",
"back-to-the-homepage-of": "Tillbaka till startsidan för",
"Cancel": "Avbryt",
"Choice": "Val",
"Classic": "Klassisk",
"Close": "Stäng",
"create-your-own-polls": "Skapa dina egna undersökningar",
"creation-date": "Datum för skapande:",
"Date": "Datum",
"Day": "Dag",
"Description": "Beskrivning",
"Edit": "Redigera",
"framadate-is-an-online-service-for-planning-an-appointment-or-making-a-decision-quickly-and-easily": "Framadate är en webbtjänst för att planera ett möte eller fatta ett beslut snabbt och enkelt.",
"Home": "Hem",
"Information": "Information",
"legend": "Beskrivning:",
"Link": "Länk",
"Markdown": "Markdown",
"Next": "Nästa",
"No": "Nej",
"page-generated-in": "Sidan skapades på",
"Poll": "Undersökning",
"Remove": "Ta bort",
"Save": "Spara",
"Search": "Sök",
"Time": "Tid",
"under-reserve": "Reserverad",
"Validate": "Validera",
"Yes": "Ja",
"your-email-address": "Din e-postadress",
"your-name": "Ditt namn",
"days": "dagar",
"for": "för",
"months": "månader",
"seconds": "sekunder",
"vote": "röst",
"votes": "röster",
"with": "med",
"make-a-standard-poll": "Gör en enkel undersökning",
"schedule-an-event": "Bestäm en tid",
"where-are-my-polls": "Var är mina undersökningar?",
"administrator-mail-address": "Administratörens e-postadress",
"application-name": "Applikationens namn",
"clean-url": "Ren URL",
"database-driver": "Databasmotor",
"database-hostname": "Databasens värdnamn",
"database-name": "Databasens namn",
"database-port": "Databasens portnummer",
"default-language": "Standardspråk",
"General": "Allmänt",
"Install": "Installera",
"migration-table": "Migreringstabell",
"Password": "Lösenord",
"Prefix": "Prefix",
"respond-to-mail-address": "E-postadress för svar",
"User": "Användare",
"change-language": "Ändra språk",
"select-language": "Välj språk",
"the-road-is-long-but-the-way-is-clear-framasoft-lives-only-by-your-donations-thank-you-in-advance-fo": "”Resan är lång, men vägen är fri …”<br/>Framasoft lever helt på era gåvor.<br/>Tack på förhand för ditt stöd https://soutenir.framasoft.org/",
"message-for-the-author": "Meddelande till författaren",
"notification-of-poll-x": "Notifikation från undersökningen %s",
"participant-link": "Deltagarlänk",
"poll-participation-x": "Undersökningsdeltagande: %s",
"someone-just-changed-your-poll-at-the-following-link-x-bb8fe9ef20b2cd00960b698bc5594f8c": "Någon har nyss ändrat din undersökning på sidan <a href=\"%1$s\">%1$s</a>.",
"someone-just-deleted-your-poll-x": "Någon raderade din undersökning ”%s” nyss.",
"thank-you-for-participating-in-the-poll-at-the-following-link": "Tack för ditt deltagande i undersökningen med följande länk",
"thank-you-for-your-trust": "Tack för ditt förtroende.",
"this-is-the-message-to-forward-to-the-poll-participants": "Det här meddelandet kommer visas för undersökningens deltagare.",
"this-message-should-not-be-sent-to-the-poll-participants-you-should-keep-it-private-you-can-modify-y": "Det här meddelandet ska INTE skickas till undersökningens deltagare. Du bör hålla det privat. <br/><br/>Du kan modifiera din undersökning genom att följa länken nedan",
"added-a-vote-you-can-visit-your-poll-at-the-link-ab641717ef722077e7555439f2bf924c": "lade en röst.<br/>Du kan besöka undersökningen på",
"has-just-created-a-poll-called": "har nyss skapat en undersökning med namnet",
"updated-a-vote-you-can-visit-your-poll-at-the-link-f28e580ca94af3289fb956d2c52563c0": "ändrade en röst.<br/>Du kan besöka undersökningen på",
"wrote-a-comment-you-can-visit-your-poll-at-the-link-f0a9fed08ad28c6b319627a63e188828": "skrev en kommentar.<br/>Du kan besöka undersökningen på",
"thank-you-for-your-understanding": "Tack för din förståelse.",
"the-application": "Applikationen",
"is-currently-under-maintenance": "underhålls för tillfället.",
"submit-access": "Ge åtkomst",
"wrong-password": "Fel lösenord",
"you-have-to-provide-a-password-so-you-can-participate-to-the-poll": "Du måste uppge ett lösenord för att kunna delta i undersökningen.",
"you-have-to-provide-a-password-to-access-the-poll": "Du måste uppge ett lösenord för att komma åt undersökningen.",
"x-option": "%s alternativ",
"anyone-will-be-able-to-see-your-email-address-after-you-voted": "Vem som helst kan se din e-postadress när du har röstat",
"best-choice": "Bästa val",
"best-choices": "Bästa val",
"Chart": "Diagram",
"display-the-chart-of-the-results": "Visa ett diagram över resultaten",
"edit-line-x": "Redigera rad %s",
"link-to-edit-this-particular-line": "Länk för att redigera den här raden",
"remove-line": "Ta bort rad:",
"save-choices": "Spara val",
"scroll-to-the-left": "Rulla åt vänster",
"scroll-to-the-right": "Rulla åt höger",
"the-current-best-choice-is": "Det bästa valet är för tillfället:",
"the-current-best-choices-are": "De bästa valen är för tillfället:",
"the-link-to-edit-this-particular-line-has-been-copied-to-the-clipboard": "Länken för att redigera den här raden har kopierats till urklipp!",
"Total": "Totalt",
"vote-no-for": "Rösta ”nej” för",
"vote-yes-for": "Rösta ”ja” för",
"votes-under-reserve-for": "Röster reserverade för",
"polled-user": "undersökt användare",
"polled-users": "undersökta användare",
"admin-link-for-the-poll": "Administrationslänk för undersökningen",
"cancel-the-description-edit": "Avbryt redigering av beskrivningen",
"cancel-the-email-address-edit": "Avbryt redigering av e-postadressen",
"cancel-the-expiration-date-edit": "Avbryt redigering av utgångsdatumet",
"cancel-the-name-edit": "Avbryt redigering av namnet",
"cancel-the-rules-edit": "Avbryt redigering av reglerna",
"cancel-the-title-edit": "Avbryt redigering av titeln",
"creator-of-the-poll": "Undersökningens skapare",
"edit-name": "Redigera namn",
"edit-the-description": "Redigera beskrivningen",
"edit-the-email-address": "Redigera e-postadressen",
"edit-the-expiry-date": "Redigera utgångsdatumet",
"edit-the-poll-rules": "Redigera undersökningens regler",
"edit-title": "Redigera titel",
"export-to-csv": "Exportera som en kommaseparerad lista",
"no-password": "Inget lösenord",
"only-votes-are-protected": "Endast röster är skyddade",
"password-protected": "Lösenordsskyddad",
"poll-rules": "Regler för undersökningen",
"Print": "Skriv ut",
"public-link-to-the-poll": "Offentlig länk till undersökningen",
"remove-all-comments": "Ta bort samtliga kommentarer",
"remove-all-votes": "Ta bort samtliga röster",
"remove-password": "Ta bort lösenord",
"remove-the-poll": "Ta bort undersökningen",
"results-are-hidden": "Resultaten är dolda",
"results-are-visible": "Resultaten är synliga",
"rich-editor": "Avancerad redigerare",
"save-the-description": "Spara beskrivningen",
"save-the-email-address": "Spara e-postadressen",
"save-the-new-expiration-date": "Spara det uppdaterade sista datumet",
"save-the-new-name": "Spara det nya namnet",
"save-the-new-rules": "Spara de uppdaterade reglerna",
"save-the-new-title": "Spara den nya rubriken",
"simple-editor": "Enkel redigerare",
"title-of-the-poll": "Undersökningens rubrik",
"voters-email-addresses-are-collected": "Röstläggarnas e-postadresser samlas in",
"voters-email-addresses-are-collected-and-required": "Röstläggarnas e-postadresser samlas in och måste uppges",
"voters-email-addresses-are-collected-required-and-verified": "Röstläggarnas e-postadresser samlas in, måste uppges och bekräftas",
"voters-email-addresses-are-not-collected": "Röstläggarnas e-postadresser samlas inte in",
"votes-and-comments-are-locked": "Röster och kommentarer har låsts",
"votes-protected-by-password": "Rösterna är lösenordsskyddade",
"all-voters-can-modify-any-vote": "Alla röstande kan ändra alla röster",
"by-defining-an-identifier-that-can-facilitate-access-to-the-poll-for-unwanted-people-it-is-recommend": "Att ge undersökningen en identifierare kan göra den enklare att hitta för oönskade personer. Vi rekommenderar att lösenordsskydda den.",
"collect-voters-email-addresses": "Samla in röstläggarnas e-postadresser",
"Confirmation": "Bekräftelse",
"customize-the-url": "Anpassa länken",
"email-addresses-are-collected-but-not-required": "Röstläggarnas e-postadresser samlas in men måste inte uppges",
"email-addresses-are-not-collected": "E-postadresser samlas inte in",
"email-addresses-are-required": "E-postadresser måste uppges",
"email-addresses-are-required-and-verified": "E-postadresser måste uppges och bekräftas",
"go-to-step-2": "Gå till steg 2",
"limit-the-amount-of-voters-per-option": "Begränsa antalet röstläggare per alternativ",
"more-informations-here": "Mer information finns här:",
"only-the-poll-maker-can-see-the-poll-results": "Endast undersökningens skapare kan se resultatet",
"optional-parameters": "Frivilliga alternativ",
"Permissions": "Behörigheter",
"poll-creation-1-of-3": "Skapa undersökning (1 av 3)",
"poll-link": "Länk till undersökning",
"poll-title": "Undersökningens rubrik",
"receive-an-email-for-each-new-comment": "Skicka e-post för varje ny kommentar",
"receive-an-email-for-each-new-vote": "Skicka e-post för varje ny röst",
"required-fields-cannot-be-left-blank": "Obligatoriska fält får inte lämnas tomma.",
"the-identifier-can-contain-letters-numbers-and-dashes": "Identifieraren får innehålla bokstäver, siffror och bindestreck.",
"the-results-are-publicly-visible": "Resultaten är synliga offentligt",
"to-make-the-description-more-attractive-you-can-use-the-markdown-format": "Du kan använda Markdown för att göra beskrivningen lite snyggare.",
"use-a-password-to-restrict-access": "Använd ett lösenord för med begränsad åtkomlighet",
"value-max": "Maxvärde",
"voters-can-modify-their-own-vote-themselves": "Användare kan ändra sina röster själva",
"votes-cannot-be-modified": "Röster kan inte ändras",
"warning-anyone-can-see-the-polled-users-email-addresses-since-all-voters-can-modify-any-vote-you-sho": "Varning: Vem som helst kan se deltagarnas e-postadresser eftersom deltagarna kan ändra varandras röster. Du bör begränsa behörigheterna.",
"you-are-in-the-poll-creation-section": "Nu kan du sätta ihop din undersökning.",
"you-can-enable-or-disable-the-editor-at-will": "Du kan slå av eller på redigeraren när du vill.",
"votes-per-option": "röster per alternativ",
"go-to-step-3": "Gå till steg 3",
"return-to-step-1": "Gå tillbaka till steg 1",
"add-a-choice": "Lägg till ett alternativ",
"add-a-link-or-an-image": "Lägg till en länk eller bild",
"alternative-text": "Alternativ text",
"links-or-images-can-be-included-using": "Länkar och bilder kan läggas till med",
"markdown-syntax": "Markdown-syntax",
"poll-options-2-of-3": "Alternativ för undersökningen (2 av 3)",
"remove-a-choice": "Ta bort ett alternativ",
"these-fields-are-optional-you-can-add-a-link-an-image-or-both": "De här fälten är valfria. Du kan lägga till en länk, bild eller både och.",
"to-create-a-poll-you-should-provide-at-least-two-different-choices": "Du bör ge minst två alternativ för att skapa en undersökning.",
"url-of-the-image": "Länk till bilden",
"you-can-add-or-remove-choices-with-the-buttons": "Du kan lägga till eller ta bort val med knapparna",
"add-a-day": "Lägg till en dag",
"add-a-time-slot": "Lägg till en tid",
"choose-dates-for-your-poll": "Välj datum för din undersökning",
"copy-times-from-the-first-day": "Kopiera tider från den första dagen",
"for-each-selected-day-you-are-free-to-suggest-meeting-times-e-g-8h-8-30-8h-10h-evening-etc": "Du kan föreslå tider för varje dag (till exempel ”klockan åtta”, ”18:30”, ”kl 1014” eller ”på kvällen”).",
"poll-dates-2-of-3": "Undersökningsdatum (2 av 3)",
"remove-a-day": "Ta bort en dag",
"remove-a-time-slot": "Ta bort en tid",
"remove-all-days": "Ta bort alla dagar",
"remove-all-times": "Ta bort alla tider",
"remove-this-day": "Ta bort den här dagen",
"to-schedule-an-event-you-need-to-provide-at-least-two-choices-e-g-two-time-slots-on-one-day-or-two-d": "För att schemalägga ett evenemang måste du ange minst två val (alltså minst två tider samma dag eller två dagar).",
"you-can-add-or-remove-additional-days-and-times-with-the-buttons": "Du kan lägga till och ta bort dagar och tider med knapparna",
"back-to-step-2": "Tillbaka till steg 2",
"confirm-the-creation-of-your-poll": "Bekräfta skapandet av undersökningen",
"create-the-poll": "Skapa undersökningen",
"expiry-date-a8393c173af1de7cb1eb4d839aecae18": "Utgångsdatum:",
"list-of-options": "Lista över alternativ",
"once-you-have-confirmed-the-creation-of-your-poll-you-will-automatically-be-redirected-to-the-polls-": "När du har bekräftat undersökningens skapande kommer du skickas vidare till dess administrationssida automatiskt.",
"removal-date-and-confirmation-3-of-3": "Raderingsdatum och bekräftelse (3 av 3)",
"then-you-will-receive-two-emails-one-containing-the-link-of-your-poll-for-sending-to-the-participant": "Därefter kommer du få två e-postmeddelanden: ett med en länk att skicka till deltagarna och ett med din länk till undersökningens administrationssida.",
"you-can-set-a-specific-expiry-date-for-the-poll": "Du kan ange ett bäst före-datum för undersökningen.",
"your-poll-will-automatically-be-archived": "Din undersökning kommer arkiveras automatiskt",
"your-poll-will-be-automatically-archived-in-x-days": "Din undersökning kommer arkiveras automatiskt om %d dagar.",
"after-the-last-date-of-your-poll": "efter det sista datumet i din undersökning.",
"version-x": "Version %s",
"add-a-column": "Lägg till en kolumn",
"adding-a-column": "Lägger till en kolumn",
"all-comments-deleted": "Alla kommentarer raderade",
"all-votes-deleted": "Alla röster raderade",
"as-poll-administrator-you-can-change-all-the-lines-of-this-poll-with-this-button": "Som administratör för undersökningen kan du ändra alla rader i undersökningen med den här knappen",
"back-to-the-poll": "Tillbaka till undersökningen",
"choice-added": "Alternativ tillagt",
"collect-the-emails-of-the-polled-users-for-the-choice": "Samla in e-postadresserna till de deltagare som röstade om alternativet",
"column-deleted": "Kolumn raderad",
"comment-deleted": "Kommentar raderad",
"confirm-removal-of-all-comments": "Bekräfta borttagning av alla kommentarer",
"confirm-removal-of-all-votes": "Bekräfta borttagning av alla röster",
"confirm-removal-of-the-column": "Bekräfta borttagning av kolumnen.",
"confirm-removal-of-your-poll": "Bekräfta borttagning av din undersökning",
"delete-poll": "Radera undersökning",
"finally-you-can-change-the-properties-of-this-poll-such-as-the-title-the-comments-or-your-email-addr": "Till sist, kan du ändra undersökningens egenskaper, såsom titeln, kommentarerna och din e-postadress.",
"keep-comments": "Behåll kommentarer",
"keep-the-comments": "Behåll kommentarerna",
"keep-the-poll": "Behåll undersökningen",
"keep-the-votes": "Behåll rösterna",
"keep-this-poll": "Behåll den här undersökningen",
"keep-votes": "Behåll röster",
"poll-fully-deleted": "Undersökningen har raderats",
"poll-saved": "Undersökning sparad",
"remove-column": "Ta bort kolumn",
"remove-the-comments": "Ta bort kommentarerna",
"remove-the-votes": "Ta bort rösterna",
"the-poll-was-created": "Undersökningen har skapats.",
"vote-added": "Röst tillagd",
"vote-deleted": "Röst raderad",
"vote-updated": "Röst uppdaterad",
"you-can-add-a-new-scheduling-date-to-your-poll": "Du kan lägga till ett nytt schemaläggningsdatum för din undersökning.",
"your-poll-has-been-removed": "Din undersökning har tagits bort!",
"and-add-a-new-column-with": "och lägg till en ny kolumn med",
"remove-a-column-or-a-line-with": "ta bort en kolumn eller rad med",
"users-who-voted-if-need-be-for-this-option-have-left-those-email-addresses": "De användare som röstade ”Om så behövs” på det här alternativet, lämnade följande e-postadresser:",
"users-who-voted-no-for-this-option-have-left-those-email-addresses": "De användare som röstade ”Nej” på det här alternativet, lämnade följande e-postadresser:",
"users-who-voted-yes-for-this-option-have-left-those-email-addresses": "De användare som röstade ”Ja” på det här alternativet, lämnade följande e-postadresser:",
"deletion-date": "Raderingsdatum:",
"if-you-want-to-vote-in-this-poll-you-have-to-give-your-name-make-your-choice-and-submit-it-by-select": "Om du vill delta i den här undersökningen måste du uppge ditt namn, lägga din röst och skicka den genom att klicka på spara-knappen vid slutet av respektive rad.",
"the-administrator-locked-this-poll-votes-and-comments-are-frozen-it-is-no-longer-possible-to-partici": "Administratören har låst den här undersökningen. Röster och kommentarer har frysts och det är inte längre möjligt att delta",
"the-poll-has-expired-it-will-soon-be-deleted": "Undersökningen har gått ut och kommer snart raderas.",
"your-vote-has-been-saved-but-please-note-you-need-to-keep-this-personalised-link-to-be-able-to-edit-": "Din röst har sparats, men kom ihåg att du måste spara den här personliga länken för att kunna ändra din röst."
}

1971
src/assets/i18n/po/de.po Normal file

File diff suppressed because it is too large Load Diff

1931
src/assets/i18n/po/el.po Normal file

File diff suppressed because it is too large Load Diff

1932
src/assets/i18n/po/en.po Executable file

File diff suppressed because it is too large Load Diff

1967
src/assets/i18n/po/es.po Normal file

File diff suppressed because it is too large Load Diff

1981
src/assets/i18n/po/fr.po Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1907
src/assets/i18n/po/gl.po Normal file

File diff suppressed because it is too large Load Diff

1934
src/assets/i18n/po/hu.po Normal file

File diff suppressed because it is too large Load Diff

1958
src/assets/i18n/po/it.po Normal file

File diff suppressed because it is too large Load Diff

1922
src/assets/i18n/po/nl.po Executable file

File diff suppressed because it is too large Load Diff

1958
src/assets/i18n/po/oc.po Normal file

File diff suppressed because it is too large Load Diff

1896
src/assets/i18n/po/sv.po Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -6,17 +6,28 @@ const backendApiUrlsInDev = {
local: '/api/v1',
remote: 'https://framadate-api.cipherbliss.com/api/v1',
};
const apiV1 = {
baseHref: 'https://framadate-api.cipherbliss.com/api/v1',
api_new_poll: '/poll/',
api_get_poll: '/poll/{id}',
'api_test-mail-poll': '/api/v1/poll/mail/test-mail-poll/{emailChoice}',
'app.swagger': '/api/doc.json',
};
export const environment = {
production: false,
appTitle: 'FramaDate',
appTitle: 'FramaDate Funky',
appVersion: '2.0.0',
appLogo: 'assets/img/logo.png',
api: {
versionToUse: 'apiV1',
version: {
apiV1,
},
baseHref: backendApiUrlsInDev.local,
endpoints: {
polls: {
name: '/polls',
name: '/poll',
choices: {
name: '/choices',
},

7
src/proxy.conf.json Normal file
View File

@ -0,0 +1,7 @@
{
"/api/*": {
"target": "http://localhost:8000",
"secure": false,
"logLevel": "debug"
}
}

View File

@ -18,3 +18,7 @@
.nobold {
font-weight: normal;
}
.hidden {
display: none;
}

View File

@ -18,8 +18,16 @@ a {
background: $pale-purple;
}
}
.fa {
margin-right: 1ch;
}
}
.button,
.btn {
.fa {
margin-right: 1ch;
}
}
.list-my-polls {
a {
@extend .is-block;

View File

@ -3,7 +3,6 @@ nav {
margin-bottom: 3.2rem;
padding-top: 1.6rem;
padding-bottom: 1.6rem;
border-top: 2px solid $primary;
border-bottom: 2px solid $primary;
a {
@ -21,7 +20,10 @@ nav {
&.active,
&.is-active {
color: $white;
background: $primary_color;
background: $primary_color !important;
&:hover {
background: $dark !important;
}
}
}
}

View File

@ -1,7 +1,7 @@
@charset "UTF-8";
// colors from styleguide https://app.zeplin.io/project/5d4d83d68866d6522ff2ff10/styleguide/colors?cid=5d502bb032e23e3516af8154
$camo: #839546;
$green: #64d16e;
$black: #000000;
$ugly-purple: #b24eb7;
$lavender-pink: #e9bdeb;
@ -27,7 +27,7 @@ $primary: $ugly-purple;
$secondary_color: $lavender-pink;
$font_color: $black;
$logo_color: $dark-lavender;
$logo_color_2: $camo;
$logo_color_2: $green;
$legend_color: $dark-lavender;
$legend_color_2: $dusty-orange;
$choice_select_border_color: $cool-grey;
@ -38,6 +38,7 @@ $clicked-color: $wisteria;
$mini-button-color: $pale-purple;
$warning: $dusty-orange;
$danger: $red;
$success: $green;
// FONT
$default_font: 'pt_sans';

159
yarn.lock
View File

@ -1202,6 +1202,29 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
"@biesbjerg/ngx-translate-extract@^7.0.3":
version "7.0.3"
resolved "https://registry.yarnpkg.com/@biesbjerg/ngx-translate-extract/-/ngx-translate-extract-7.0.3.tgz#439330c6bee6deec4c2f556a308e34619c58c499"
integrity sha512-/k/5L4a3wvnR1JOdc5VrnVHPIBQnVDVKL51NDw7g7O9dR+e4U+gpwE5kmvb0yvve7jCPenK7ScYaIM9XtJPClw==
dependencies:
"@phenomnomnominal/tsquery" "^4.1.1"
boxen "^4.2.0"
colorette "^1.2.1"
flat "^5.0.2"
gettext-parser "^4.0.4"
glob "^7.1.6"
mkdirp "^1.0.4"
path "^0.12.7"
terminal-link "^2.1.1"
yargs "^16.0.3"
"@biesbjerg/ngx-translate-po-http-loader@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@biesbjerg/ngx-translate-po-http-loader/-/ngx-translate-po-http-loader-3.1.0.tgz#4f3d9b909bd033a8991d9c6d52608b7914e4dbfe"
integrity sha512-3umXEBeCqtwug6Y12f9t7rwKXQW3+HrsEuJy5JYhu+uZ9EwWqlK+SuPqpRbu1Q5gv30FViabmx4co5h2QTSLqA==
dependencies:
gettext-parser "1.3.1"
"@cnakazawa/watch@^1.0.3":
version "1.0.4"
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
@ -1554,6 +1577,13 @@
dependencies:
mkdirp "^1.0.4"
"@phenomnomnominal/tsquery@^4.1.1":
version "4.1.1"
resolved "https://registry.yarnpkg.com/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz#42971b83590e9d853d024ddb04a18085a36518df"
integrity sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==
dependencies:
esquery "^1.0.1"
"@schematics/angular@9.1.9":
version "9.1.9"
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-9.1.9.tgz#df9f30dd7b63856121fbb9ab5dda57b443802a33"
@ -3276,6 +3306,15 @@ cliui@^6.0.0:
strip-ansi "^6.0.0"
wrap-ansi "^6.2.0"
cliui@^7.0.2:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.3.tgz#ef180f26c8d9bff3927ee52428bfec2090427981"
integrity sha512-Gj3QHTkVMPKqwP3f7B4KPkBZRMR9r4rfi5bXFpg1a+Svvj8l7q5CnkBkVQzfxT5DFSsGk2+PascOgL0JYkL2kw==
dependencies:
string-width "^4.2.0"
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@ -3379,6 +3418,11 @@ color@^3.0.0:
color-convert "^1.9.1"
color-string "^1.5.2"
colorette@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
colors@^1.4.0, colors@latest:
version "1.4.0"
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
@ -3520,7 +3564,7 @@ content-disposition@0.5.3:
dependencies:
safe-buffer "5.1.2"
content-type@~1.0.4:
content-type@^1.0.4, content-type@~1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
@ -4369,6 +4413,11 @@ elliptic@^6.0.0, elliptic@^6.5.2:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.0"
emitter-component@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/emitter-component/-/emitter-component-1.1.1.tgz#065e2dbed6959bf470679edabeaf7981d1003ab6"
integrity sha1-Bl4tvtaVm/RwZ57avq95gdEAOrY=
emoji-regex@^7.0.1:
version "7.0.3"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
@ -4401,6 +4450,13 @@ encoding@^0.1.11:
dependencies:
iconv-lite "~0.4.13"
encoding@^0.1.12, encoding@^0.1.13:
version "0.1.13"
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
dependencies:
iconv-lite "^0.6.2"
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
version "1.4.4"
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
@ -4570,6 +4626,11 @@ escalade@^3.0.1:
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.1.tgz#52568a77443f6927cd0ab9c73129137533c965ed"
integrity sha512-DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA==
escalade@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
escape-goat@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675"
@ -4716,7 +4777,7 @@ esprima@~1.0.4:
resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad"
integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=
esquery@^1.2.0:
esquery@^1.0.1, esquery@^1.2.0:
version "1.3.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
@ -5186,6 +5247,11 @@ flat-cache@^2.0.1:
rimraf "2.6.3"
write "1.0.3"
flat@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
flatted@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"
@ -5385,7 +5451,7 @@ get-assigned-identifiers@^1.1.0:
resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1"
integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==
get-caller-file@^2.0.1:
get-caller-file@^2.0.1, get-caller-file@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
@ -5431,6 +5497,24 @@ getpass@^0.1.1:
dependencies:
assert-plus "^1.0.0"
gettext-parser@1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/gettext-parser/-/gettext-parser-1.3.1.tgz#74b7a99e4b5fa8daab11fa515e8a582480448a12"
integrity sha512-W4t55eB/c7WrH0gbCHFiHuaEnJ1WiPJVnbFFiNEoh2QkOmuSLxs0PmJDGAmCQuTJCU740Fmb6D+2D/2xECWZGQ==
dependencies:
encoding "^0.1.12"
safe-buffer "^5.1.1"
gettext-parser@^4.0.4:
version "4.0.4"
resolved "https://registry.yarnpkg.com/gettext-parser/-/gettext-parser-4.0.4.tgz#bd5eb4af282336c8bf83f607d35f0839853b9670"
integrity sha512-VDZEeOIYd0veZXt5iAn0SS3I0Fz14fJw+59avRNa7VIslEDriRLxcfrBd/xeQyOcm6nyS4uuufxm2iw88qirAg==
dependencies:
content-type "^1.0.4"
encoding "^0.1.13"
readable-stream "^3.6.0"
safe-buffer "^5.2.1"
glob-parent@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
@ -5928,6 +6012,13 @@ iconv-lite@^0.5.1:
dependencies:
safer-buffer ">= 2.1.2 < 3"
iconv-lite@^0.6.2:
version "0.6.2"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01"
integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==
dependencies:
safer-buffer ">= 2.1.2 < 3.0.0"
icss-utils@^4.0.0, icss-utils@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
@ -8802,6 +8893,14 @@ path-type@^4.0.0:
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
path@^0.12.7:
version "0.12.7"
resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"
integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=
dependencies:
process "^0.11.1"
util "^0.10.3"
pause-stream@0.0.11:
version "0.0.11"
resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"
@ -9357,7 +9456,7 @@ process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
process@^0.11.10:
process@^0.11.1, process@^0.11.10:
version "0.11.10"
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
@ -10081,7 +10180,7 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@ -10093,7 +10192,7 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@ -10821,6 +10920,13 @@ stream-shift@^1.0.0:
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
stream@^0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/stream/-/stream-0.0.2.tgz#7f5363f057f6592c5595f00bc80a27f5cec1f0ef"
integrity sha1-f1Nj8Ff2WSxVlfALyAon9c7B8O8=
dependencies:
emitter-component "^1.1.1"
strict-uri-encode@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
@ -11097,7 +11203,7 @@ term-size@^2.1.0:
resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753"
integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==
terminal-link@^2.0.0:
terminal-link@^2.0.0, terminal-link@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
@ -11726,6 +11832,13 @@ util@0.10.3:
dependencies:
inherits "2.0.1"
util@^0.10.3:
version "0.10.4"
resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==
dependencies:
inherits "2.0.3"
util@^0.11.0:
version "0.11.1"
resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
@ -12135,6 +12248,15 @@ wrap-ansi@^6.2.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrappy@1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
@ -12207,6 +12329,11 @@ y18n@^4.0.0:
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
y18n@^5.0.2:
version "5.0.5"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
@ -12238,6 +12365,11 @@ yargs-parser@^13.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
yargs-parser@^20.2.2:
version "20.2.3"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.3.tgz#92419ba867b858c868acf8bae9bf74af0dd0ce26"
integrity sha512-emOFRT9WVHw03QSvN5qor9QQT9+sw5vwxfYweivSMHTcAXPefwVae2FjO7JJjj8hCE4CzPOPeFM83VwT29HCww==
yargs@15.3.0:
version "15.3.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.0.tgz#403af6edc75b3ae04bf66c94202228ba119f0976"
@ -12288,6 +12420,19 @@ yargs@^15.1.0, yargs@^15.3.1:
y18n "^4.0.0"
yargs-parser "^18.1.1"
yargs@^16.0.3:
version "16.1.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.1.0.tgz#fc333fe4791660eace5a894b39d42f851cd48f2a"
integrity sha512-upWFJOmDdHN0syLuESuvXDmrRcWd1QafJolHskzaw79uZa7/x53gxQKiR07W59GWY1tFhhU/Th9DrtSfpS782g==
dependencies:
cliui "^7.0.2"
escalade "^3.1.1"
get-caller-file "^2.0.5"
require-directory "^2.1.1"
string-width "^4.2.0"
y18n "^5.0.2"
yargs-parser "^20.2.2"
yn@3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"