diff --git a/app/adapters/application.js b/app/adapters/application.js index 463be501a94..340aaf8941e 100644 --- a/app/adapters/application.js +++ b/app/adapters/application.js @@ -40,7 +40,7 @@ export default JSONAPIAdapter.extend(HasManyQueryAdapterMixin, FastbootAdapter, isInvalid(statusCode) { if (statusCode !== 404 && statusCode !== 422 && statusCode !== 403 && statusCode !== 409) { - this.notify.error('An unexpected error occurred.', { + this.notify.error('An unexpected error has occurred.', { closeAfter : 5000, id : 'serve_error' }); diff --git a/app/components/account/contact-info-section.js b/app/components/account/contact-info-section.js index 74a20a8ed8d..a07eb3d700d 100644 --- a/app/components/account/contact-info-section.js +++ b/app/components/account/contact-info-section.js @@ -23,7 +23,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email ID') + prompt : this.l10n.t('Please enter a valid email address') } ] }, diff --git a/app/components/account/email-preferences-section.js b/app/components/account/email-preferences-section.js index 6e597bcd606..621119de9dc 100644 --- a/app/components/account/email-preferences-section.js +++ b/app/components/account/email-preferences-section.js @@ -15,7 +15,7 @@ export default class EmailPreferencesSection extends Component { .catch(e => { console.error('Error while updating email notifications.', e); emailPreference.rollbackAttributes(); - this.notify.error(this.l10n.t('An unexpected error occurred.'), { + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'email_error' }); }); diff --git a/app/components/events/view/export/download-common.js b/app/components/events/view/export/download-common.js index b9e530f92f3..997d7604868 100644 --- a/app/components/events/view/export/download-common.js +++ b/app/components/events/view/export/download-common.js @@ -77,7 +77,7 @@ export default class DownloadCommon extends Component { .catch(e => { console.error('Error while starting exporting job', e); this.set('isLoading', false); - this.notify.error(this.l10n.t('Unexpected error occurred.'), { + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'unexpected_down_error' }); }); diff --git a/app/components/forms/admin/settings/system/mail-settings/test-email-form.js b/app/components/forms/admin/settings/system/mail-settings/test-email-form.js index 224c073b09e..cb188e2ce89 100644 --- a/app/components/forms/admin/settings/system/mail-settings/test-email-form.js +++ b/app/components/forms/admin/settings/system/mail-settings/test-email-form.js @@ -45,7 +45,7 @@ export default class TestEmailForm extends Component.extend(FormMixin) { }) .catch(e => { console.error('Error while sending test email', e); - this.notify.error(this.l10n.t('An unexpected error has occurred'), { + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'test_mail_err' }); }); diff --git a/app/components/forms/login-form.js b/app/components/forms/login-form.js index 8bf8aac56ae..13bf25224ea 100644 --- a/app/components/forms/login-form.js +++ b/app/components/forms/login-form.js @@ -26,7 +26,7 @@ export default class LoginForm extends Component.extend(FormMixin) { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email ID') + prompt : this.l10n.t('Please enter a valid email address') } ] }, @@ -67,7 +67,7 @@ export default class LoginForm extends Component.extend(FormMixin) { this.set('errorMessage', this.l10n.tVar(e.json.error)); } else { console.error('Error while authentication', e); - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } } @@ -94,7 +94,7 @@ export default class LoginForm extends Component.extend(FormMixin) { }); } else { console.error('Error while facebook authentication', e); - this.notify.error(this.l10n.t('An unexpected error has occurred'), { + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'unexpect_error' }); } diff --git a/app/components/forms/orders/guest-order-form.js b/app/components/forms/orders/guest-order-form.js index 0d7caf0057f..e8385c33006 100644 --- a/app/components/forms/orders/guest-order-form.js +++ b/app/components/forms/orders/guest-order-form.js @@ -19,7 +19,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email ID') + prompt : this.l10n.t('Please enter a valid email address') } ] }, diff --git a/app/components/forms/orders/order-form.js b/app/components/forms/orders/order-form.js index ef9e73faae5..82d7686c355 100644 --- a/app/components/forms/orders/order-form.js +++ b/app/components/forms/orders/order-form.js @@ -88,7 +88,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email') + prompt : this.l10n.t('Please enter a valid email address') } ] }; @@ -476,7 +476,7 @@ export default Component.extend(FormMixin, { rules: [ { type : 'empty', - prompt : 'Please enter ' + field.name + prompt : this.l10n.t('Please enter {{field}}', { field: field.name }) } ] }; diff --git a/app/components/forms/reset-password-form.js b/app/components/forms/reset-password-form.js index 4ed474742cf..548e0940a7c 100644 --- a/app/components/forms/reset-password-form.js +++ b/app/components/forms/reset-password-form.js @@ -23,7 +23,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email ID') + prompt : this.l10n.t('Please enter a valid email address') } ] }, @@ -114,7 +114,7 @@ export default Component.extend(FormMixin, { this.set('errorMessage', this.l10n.t('No account is registered with this email address.')); } else { console.error('Error while submitting reset password', reason); - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } }) .finally(() => { diff --git a/app/components/forms/session-speaker-form.js b/app/components/forms/session-speaker-form.js index 7af0a3f3598..a0af9da1822 100644 --- a/app/components/forms/session-speaker-form.js +++ b/app/components/forms/session-speaker-form.js @@ -195,7 +195,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email') + prompt : this.l10n.t('Please enter a valid email address') } ] }, @@ -209,7 +209,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email') + prompt : this.l10n.t('Please enter a valid email address') } ] }, @@ -387,7 +387,7 @@ export default Component.extend(FormMixin, { rules: [ { type : 'empty', - prompt : 'Please enter ' + field.name + prompt : this.l10n.t('Please enter {{field}}', { field: field.name }) } ] }; diff --git a/app/components/forms/user-profile-form.js b/app/components/forms/user-profile-form.js index b02cad080c2..22db20b91cf 100644 --- a/app/components/forms/user-profile-form.js +++ b/app/components/forms/user-profile-form.js @@ -38,7 +38,7 @@ export default Component.extend(FormMixin, { }, { type : 'email', - prompt : this.l10n.t('Please enter a valid email ID') + prompt : this.l10n.t('Please enter a valid email address') } ] }, diff --git a/app/components/forms/wizard/basic-details-step.js b/app/components/forms/wizard/basic-details-step.js index 28595185f27..7a8f4ea3f69 100644 --- a/app/components/forms/wizard/basic-details-step.js +++ b/app/components/forms/wizard/basic-details-step.js @@ -337,7 +337,7 @@ export default Component.extend(FormMixin, EventWizardMixin, { rules : [ { type : 'email', - prompt : this.l10n.t('Please enter a valid email') + prompt : this.l10n.t('Please enter a valid email address') }, { type : 'empty', diff --git a/app/components/notification-dropdown.js b/app/components/notification-dropdown.js index f3996eb918d..3d38a9528c7 100644 --- a/app/components/notification-dropdown.js +++ b/app/components/notification-dropdown.js @@ -32,7 +32,7 @@ export default class NotificationDropdown extends Component { }) .catch(e => { console.error('Error while marking notifications as read.', e); - this.notify.error(this.l10n.t('An unexpected error occurred.'), { + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'not_read_error' }); }); diff --git a/app/components/widgets/forms/image-upload.js b/app/components/widgets/forms/image-upload.js index c8f0b47c76f..2e0aefd4ea3 100644 --- a/app/components/widgets/forms/image-upload.js +++ b/app/components/widgets/forms/image-upload.js @@ -42,7 +42,7 @@ export default class ImageUpload extends Component { .catch(e => { console.error('Error while uploading and setting image URL', e); this.set('uploadingImage', false); - this.set('errorMessage', this.i18n.t('An unexpected error occurred.')); + this.set('errorMessage', this.i18n.t('An unexpected error has occurred.')); }); } diff --git a/app/controllers/admin/content/translations.js b/app/controllers/admin/content/translations.js index ec61c731d7e..fb87854f9b3 100644 --- a/app/controllers/admin/content/translations.js +++ b/app/controllers/admin/content/translations.js @@ -20,7 +20,7 @@ export default class extends Controller { }); } catch (e) { console.error('Error downloading translation zip', e); - this.notify.error(this.l10n.t('Unexpected error occurred.'), + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'zip_error' }); diff --git a/app/controllers/event-invoice/paid.js b/app/controllers/event-invoice/paid.js index e1ee142f913..baddc50caf6 100644 --- a/app/controllers/event-invoice/paid.js +++ b/app/controllers/event-invoice/paid.js @@ -20,7 +20,7 @@ export default class extends Controller { document.body.removeChild(anchor); } catch (e) { console.error('Error while downloading event invoice', e); - this.notify.error(this.l10n.t('Unexpected error occurred.'), + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'event_here_error' }); diff --git a/app/controllers/events/view/export.js b/app/controllers/events/view/export.js index cbec3fca19f..6ba5e71b280 100644 --- a/app/controllers/events/view/export.js +++ b/app/controllers/events/view/export.js @@ -65,7 +65,7 @@ export default class extends Controller { }) .catch(() => { this.set('isLoading', false); - this.notify.error(this.l10n.t('Unexpected error occurred.'), + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'event_error_export' }); diff --git a/app/controllers/events/view/tickets/attendees/list.js b/app/controllers/events/view/tickets/attendees/list.js index fbb48f4ea14..d8f271eef82 100644 --- a/app/controllers/events/view/tickets/attendees/list.js +++ b/app/controllers/events/view/tickets/attendees/list.js @@ -69,7 +69,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) { this.refreshModel.bind(this)(); }) .catch(() => { - this.notify.error(this.l10n.t('An unexpected error has occurred')); + this.notify.error(this.l10n.t('An unexpected error has occurred.')); }); } } diff --git a/app/controllers/notifications.js b/app/controllers/notifications.js index 00522745883..60f46fb60f2 100644 --- a/app/controllers/notifications.js +++ b/app/controllers/notifications.js @@ -20,7 +20,7 @@ export default class NotificationsController extends Controller { }); }) .catch(() => { - this.notify.error(this.l10n.t('An unexpected error occurred.'), + this.notify.error(this.l10n.t('An unexpected error has occurred.'), { id: 'mark_read_error' }); diff --git a/app/controllers/oauth/callback.js b/app/controllers/oauth/callback.js index efe82d97e36..d10aa0baa36 100644 --- a/app/controllers/oauth/callback.js +++ b/app/controllers/oauth/callback.js @@ -28,7 +28,7 @@ export default class CallbackController extends Controller { if (reason && Object.prototype.hasOwnProperty.call(reason, 'status_code') && reason.status_code === 401) { this.set('errorMessage', this.l10n.t('Your credentials were incorrect.')); } else { - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } this.set('isLoading', false); } else { diff --git a/app/controllers/public/index.js b/app/controllers/public/index.js index 9ba47c7cd86..6eee6124463 100644 --- a/app/controllers/public/index.js +++ b/app/controllers/public/index.js @@ -85,7 +85,7 @@ export default class IndexController extends Controller { if (reason && reason.status === 401) { this.set('errorMessage', this.l10n.t('Your credentials were incorrect.')); } else { - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } } else { console.warn(reason); diff --git a/app/controllers/register.js b/app/controllers/register.js index bb0d600c28a..ab1b1cb8cd1 100644 --- a/app/controllers/register.js +++ b/app/controllers/register.js @@ -34,7 +34,7 @@ export default class RegisterController extends Controller { } else if (reason?.errors[0]?.status === '422') { this.set('errorMessage', this.l10n.t('Invalid email address.')); } else { - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } }) .finally(() => { @@ -67,7 +67,7 @@ export default class RegisterController extends Controller { if (reason && Object.prototype.hasOwnProperty.call(reason, 'errors') && reason.status_code === 401) { this.set('errorMessage', this.l10n.t('Your credentials were incorrect.')); } else { - this.set('errorMessage', this.l10n.t('An unexpected error occurred.')); + this.set('errorMessage', this.l10n.t('An unexpected error has occurred.')); } } else { console.warn(reason); diff --git a/app/mixins/event-wizard.js b/app/mixins/event-wizard.js index 7f5eb7ed84f..a1799d85aea 100644 --- a/app/mixins/event-wizard.js +++ b/app/mixins/event-wizard.js @@ -170,7 +170,7 @@ export default Mixin.create(MutableArray, CustomFormMixin, { this.notify.error(this.l10n.tVar(error.detail)); }); } else { - this.notify.error(this.l10n.t('An unexpected error has occurred')); + this.notify.error(this.l10n.t('An unexpected error has occurred.')); } }) .finally(() => { diff --git a/app/mixins/notifications.js b/app/mixins/notifications.js index 74893a894c7..a8718dacdc2 100644 --- a/app/mixins/notifications.js +++ b/app/mixins/notifications.js @@ -9,7 +9,7 @@ export default Mixin.create({ this.notify.success(this.l10n.t('Marked as Read successfully')); }) .catch(() => { - this.notify.error(this.l10n.t('An unexpected error occurred.')); + this.notify.error(this.l10n.t('An unexpected error has occurred.')); }); }, markAllAsRead(notifications) { @@ -27,7 +27,7 @@ export default Mixin.create({ }) .catch(e => { console.error('Error while marking all notifications as read', e); - this.notify.error(this.l10n.t('An unexpected error occurred.')); + this.notify.error(this.l10n.t('An unexpected error has occurred.')); }); } } diff --git a/app/services/auth-manager.js b/app/services/auth-manager.js index 35496fbf568..d82159b23b9 100644 --- a/app/services/auth-manager.js +++ b/app/services/auth-manager.js @@ -145,7 +145,7 @@ export default class AuthManagerService extends Service { } catch (e) { console.warn(e); this.session.invalidate(); - this.notify.error(this.l10n.t('An unexpected error has occurred')); + this.notify.error(this.l10n.t('An unexpected error has occurred.')); } } else { diff --git a/app/services/l10n.js b/app/services/l10n.js index fe91be9b2df..2e82b3ab0c1 100644 --- a/app/services/l10n.js +++ b/app/services/l10n.js @@ -13,21 +13,21 @@ export default class L10nService extends L10n { @computed(function() { return { - 'bn' : this.t('বাংলা'), - 'zh_Hans' : this.t('中文 (简化版)'), - 'zh_Hant' : this.t('中文 (傳統的)'), - 'en' : this.t('English'), - 'fr' : this.t('français'), - 'de' : this.t('Deutsche'), - 'id' : this.t('bahasa Indonesia'), - 'ko' : this.t('한국어'), - 'pl' : this.t('Polskie'), - 'es' : this.t('Español'), - 'th' : this.t('ไทย'), - 'vi' : this.t('Tiếng Việt'), - 'hi' : this.t('हिंदी'), - 'ja' : this.t('日本語'), - 'ru' : this.t('русский') + 'bn' : 'বাংলা', + 'zh_Hans' : '中文 (简化版)', + 'zh_Hant' : '中文 (傳統的)', + 'en' : 'English', + 'fr' : 'français', + 'de' : 'Deutsche', + 'id' : 'bahasa Indonesia', + 'ko' : '한국어', + 'pl' : 'Polskie', + 'es' : 'Español', + 'th' : 'ไทย', + 'vi' : 'Tiếng Việt', + 'hi' : 'हिंदी', + 'ja' : '日本語', + 'ru' : 'русский' }; }) availableLocales; diff --git a/translations/bn.po b/translations/bn.po index 5e4bac82f1e..a63ede799b5 100644 --- a/translations/bn.po +++ b/translations/bn.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,28 +105,21 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." -msgstr "" +msgstr "একটি অপ্রত্যাশিত ত্রুটি সংঘটিত হয়েছে।" #: app/components/account/email-preferences-section.js:11:28 msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "একটি অপ্রত্যাশিত ত্রুটি সংঘটিত হয়েছে।." - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "আপনার ই-মেইল লিখুন" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "অনুগ্রহ করে আপনার জিপ কোড প msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,48 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "Please enter a valid email address" -#~ msgstr "অনুগ্রহ করে একটি বৈধ ইমেল ঠিকানা প্রবেশ করান" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Message" -#~ msgstr "সংবাদ" - -#~ msgid "Started" -#~ msgstr "শুরু হয়েগেছে" - -#~ msgid "Locations" -#~ msgstr "অবস্থানগুলো" - -#~ msgid "Support" -#~ msgstr "সাহায্য" - -#~ msgid "Github" -#~ msgstr "গিটহাব" - -#~ msgid "Youtube" -#~ msgstr "য়ুটুব" - -#~ msgid "Roles" -#~ msgstr "চরিত্রগুল" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/de.po b/translations/de.po index 83a69b239ac..427dc15d2f0 100644 --- a/translations/de.po +++ b/translations/de.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,39 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Message" -#~ msgstr "Nachricht" - -#~ msgid "Started" -#~ msgstr "Gestartet" - -#~ msgid "Locations" -#~ msgstr "Orte" - -#~ msgid "Support" -#~ msgstr "Unterstützung" - -#~ msgid "Roles" -#~ msgstr "Rollen" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/en.po b/translations/en.po index 3d369216ef6..a74d0346af0 100644 --- a/translations/en.po +++ b/translations/en.po @@ -26,12 +26,22 @@ msgid "Please enter your email ID" msgstr "Please enter your email ID" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" -msgstr "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" +msgstr "Please enter a valid email address" #: app/components/account/contact-info-section.js:35:23 #: app/components/forms/user-payment-info-form.js:82:23 @@ -48,10 +58,19 @@ msgid "Your account has been deleted successfully." msgstr "Your account has been deleted successfully." #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -61,7 +80,9 @@ msgstr "Your account has been deleted successfully." #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -77,6 +98,7 @@ msgstr "Your account has been deleted successfully." #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -84,7 +106,13 @@ msgstr "Your account has been deleted successfully." #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "An unexpected error has occurred." @@ -93,19 +121,6 @@ msgstr "An unexpected error has occurred." msgid "Email notifications updated successfully" msgstr "Email notifications updated successfully" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "An unexpected error occurred." - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "Please enter the current password" @@ -161,13 +176,6 @@ msgstr "Task is going on." msgid "Task failed." msgstr "Task failed." -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "Unexpected error occurred." - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "Exported Event Downloaded successfully." @@ -316,15 +324,6 @@ msgstr "Please enter a valid mobile number." msgid "Please enter the email" msgstr "Please enter the email" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "Please enter a valid email address" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "Please enter the billing paypal email invoice money will be transferred to" @@ -537,13 +536,6 @@ msgstr "Please enter the token for Sendgrid" msgid "Please enter the recipient E-mail" msgstr "Please enter the recipient E-mail" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "An unexpected error has occurred" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "Existing items need to be completed before new items can be added." @@ -633,13 +625,6 @@ msgstr "Please enter your last name" msgid "Please enter your email" msgstr "Please enter your email" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "Please enter a valid email" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -754,6 +739,11 @@ msgstr "Please enter your zip code" msgid "Please specify your choice of payment method" msgstr "Please specify your choice of payment method" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "Please enter {{field}}" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "Please enter a password" @@ -6958,921 +6948,3 @@ msgstr "Next week" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "Custom dates" - -#~ msgid "Download Event as" -#~ msgstr "Download Event as" - -#~ msgid "Once the event is live and the schedule is published," -#~ msgstr "Once the event is live and the schedule is published," - -#~ msgid "version of the schedule will be available at:" -#~ msgstr "version of the schedule will be available at:" - -#~ msgid "Alternatively, you can download the" -#~ msgstr "Alternatively, you can download the" - -#~ msgid "Please enter a valid twitter url" -#~ msgstr "Please enter a valid twitter url" - -#~ msgid "Please enter a valid facebook url" -#~ msgstr "Please enter a valid facebook url" - -#~ msgid "Please enter a valid google plus url" -#~ msgstr "Please enter a valid google plus url" - -#~ msgid "Please enter a valid youtube url" -#~ msgstr "Please enter a valid youtube url" - -#~ msgid "Please enter a valid github url" -#~ msgstr "Please enter a valid github url" - -#~ msgid "Please enter a valid email address" -#~ msgstr "Please enter a valid email address" - -#~ msgid "Please enter the username for SMTP" -#~ msgstr "Please enter the username for SMTP" - -#~ msgid "Please enter the password for SMTP" -#~ msgstr "Please enter the password for SMTP" - -#~ msgid "Please enter the application secret key" -#~ msgstr "Please enter the application secret key" - -#~ msgid "Your application secret key must have at least {ruleValue} characters" -#~ msgstr "Your application secret key must have at least {ruleValue} characters" - -#~ msgid "Please enter a valid registration time limit between 1 to 60 minutes." -#~ msgstr "Please enter a valid registration time limit between 1 to 60 minutes." - -#~ msgid "Please enter a valid github profile url" -#~ msgstr "Please enter a valid github profile url" - -#~ msgid "Please enter github link" -#~ msgstr "Please enter github link" - -#~ msgid "Please enter your city " -#~ msgstr "Please enter your city " - -#~ msgid "Please specify your choice of payment method " -#~ msgstr "Please specify your choice of payment method " - -#~ msgid "Please enter linkedin link" -#~ msgstr "Please enter linkedin link" - -#~ msgid "Please enter a valid linkedin profile url" -#~ msgstr "Please enter a valid linkedin profile url" - -#~ msgid "Please select the Privacy" -#~ msgstr "Please select the Privacy" - -#~ msgid "Please enter a valid email address for user" -#~ msgstr "Please enter a valid email address for user" - -#~ msgid "Please enter your phone" -#~ msgstr "Please enter your phone" - -#~ msgid "Your event must have a location before it can be published." -#~ msgstr "Your event must have a location before it can be published." - -#~ msgid "Oops something went wrong1. Please try again" -#~ msgstr "Oops something went wrong1. Please try again" - -#~ msgid "Oops something went wrong2. Please try again" -#~ msgstr "Oops something went wrong2. Please try again" - -#~ msgid "Oops something went wrong4. Please try again" -#~ msgstr "Oops something went wrong4. Please try again" - -#~ msgid "Session has been accepted and speaker has been notified via email." -#~ msgstr "Session has been accepted and speaker has been notified via email." - -#~ msgid "Session has been accepted" -#~ msgstr "Session has been accepted" - -#~ msgid "Session has been confirmed and speaker has been notified via email." -#~ msgstr "Session has been confirmed and speaker has been notified via email." - -#~ msgid "Session has been confirmed" -#~ msgstr "Session has been confirmed" - -#~ msgid "Session has been rejected and speaker has been notified via email." -#~ msgstr "Session has been rejected and speaker has been notified via email." - -#~ msgid "Session has been rejected" -#~ msgstr "Session has been rejected" - -#~ msgid "An unexpected error has occured. Discount code cannot be created." -#~ msgstr "An unexpected error has occured. Discount code cannot be created." - -#~ msgid "Attendee CheckedIn status modified successfully." -#~ msgstr "Attendee CheckedIn status modified successfully." - -#~ msgid "An unexpected error has occured" -#~ msgstr "An unexpected error has occured" - -#~ msgid "Proposal has been deleted successfully." -#~ msgstr "Proposal has been deleted successfully." - -#~ msgid "Modules" -#~ msgstr "Modules" - -#~ msgid "Fees" -#~ msgstr "Fees" - -#~ msgid "Saved" -#~ msgstr "Saved" - -#~ msgid "Order Form" -#~ msgstr "Order Form" - -#~ msgid "All sessions" -#~ msgstr "All sessions" - -#~ msgid "Today's Sessions" -#~ msgstr "Today's Sessions" - -#~ msgid "Week's Sessions" -#~ msgstr "Week's Sessions" - -#~ msgid "Month's Sessions" -#~ msgstr "Month's Sessions" - -#~ msgid "Contact Info" -#~ msgstr "Contact Info" - -#~ msgid "Bengali/Bangla" -#~ msgstr "Bengali/Bangla" - -#~ msgid "Chinese (Simplified)" -#~ msgstr "Chinese (Simplified)" - -#~ msgid "Chinese (Traditional)" -#~ msgstr "Chinese (Traditional)" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "French" - -#~ msgid "German" -#~ msgstr "German" - -#~ msgid "Indonesian" -#~ msgstr "Indonesian" - -#~ msgid "Korean" -#~ msgstr "Korean" - -#~ msgid "Polish" -#~ msgstr "Polish" - -#~ msgid "Spanish" -#~ msgstr "Spanish" - -#~ msgid "Thai" -#~ msgstr "Thai" - -#~ msgid "Vietnamese" -#~ msgstr "Vietnamese" - -#~ msgid "Hindi" -#~ msgstr "Hindi" - -#~ msgid "Japanese" -#~ msgstr "Japanese" - -#~ msgid "Russian" -#~ msgstr "Russian" - -#~ msgid "In last 7 days " -#~ msgstr "In last 7 days " - -#~ msgid "In last 1 month " -#~ msgstr "In last 1 month " - -#~ msgid "Ticketing" -#~ msgstr "Ticketing" - -#~ msgid "Payments" -#~ msgstr "Payments" - -#~ msgid "Donations" -#~ msgstr "Donations" - -#~ msgid "service.name" -#~ msgstr "service.name" - -#~ msgid "Completed Orders " -#~ msgstr "Completed Orders " - -#~ msgid "Pending Orders " -#~ msgstr "Pending Orders " - -#~ msgid "Fee Summary" -#~ msgstr "Fee Summary" - -#~ msgid "Saved Events" -#~ msgstr "Saved Events" - -#~ msgid "has caused an error. " -#~ msgstr "has caused an error. " - -#~ msgid "Previous Events" -#~ msgstr "Previous Events" - -#~ msgid "Message" -#~ msgstr "Message" - -#~ msgid "Started" -#~ msgstr "Started" - -#~ msgid "Check your event here" -#~ msgstr "Check your event here" - -#~ msgid "8 days ago" -#~ msgstr "8 days ago" - -#~ msgid " version of the schedule will be available at:" -#~ msgstr " version of the schedule will be available at:" - -#~ msgid " here" -#~ msgstr " here" - -#~ msgid "Download " -#~ msgstr "Download " - -#~ msgid "(view revisions)" -#~ msgstr "(view revisions)" - -#~ msgid "No Session Type present. " -#~ msgstr "No Session Type present. " - -#~ msgid "No social links present. " -#~ msgstr "No social links present. " - -#~ msgid "Manage roles" -#~ msgstr "Manage roles" - -#~ msgid "Sitemap" -#~ msgstr "Sitemap" - -#~ msgid "Locations" -#~ msgstr "Locations" - -#~ msgid "Nearby Events" -#~ msgstr "Nearby Events" - -#~ msgid "Connect with us" -#~ msgstr "Connect with us" - -#~ msgid "Support" -#~ msgstr "Support" - -#~ msgid "Github" -#~ msgstr "Github" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Google +" -#~ msgstr "Google +" - -#~ msgid "Are you sure you would like to delete this page?" -#~ msgstr "Are you sure you would like to delete this page?" - -#~ msgid "Choose a searching option to be used in the backend" -#~ msgstr "Choose a searching option to be used in the backend" - -#~ msgid "Flask Filtering" -#~ msgstr "Flask Filtering" - -#~ msgid "Elastic Search (Coming Soon)" -#~ msgstr "Elastic Search (Coming Soon)" - -#~ msgid "App secret key" -#~ msgstr "App secret key" - -#~ msgid "Secret key for the application. Recommended is a random string minimum 20 characters in length." -#~ msgstr "Secret key for the application. Recommended is a random string minimum 20 characters in length." - -#~ msgid "Add Fee Settings for the event" -#~ msgstr "Add Fee Settings for the event" - -#~ msgid "Are you sure you would like to remove this ticket?" -#~ msgstr "Are you sure you would like to remove this ticket?" - -#~ msgid "Amount (US$)" -#~ msgstr "Amount (US$)" - -#~ msgid "Registration Options" -#~ msgstr "Registration Options" - -#~ msgid "REGISTRATION TIME LIMIT" -#~ msgstr "REGISTRATION TIME LIMIT" - -#~ msgid "Login with Facebook" -#~ msgstr "Login with Facebook" - -#~ msgid "Ticket Holder " -#~ msgstr "Ticket Holder " - -#~ msgid " -for- " -#~ msgstr " -for- " - -#~ msgid "Stripe" -#~ msgstr "Stripe" - -#~ msgid "Please complete registration within " -#~ msgstr "Please complete registration within " - -#~ msgid "After " -#~ msgstr "After " - -#~ msgid "password" -#~ msgstr "password" - -#~ msgid "Details of the user" -#~ msgstr "Details of the user" - -#~ msgid "Select Event Image" -#~ msgstr "Select Event Image" - -#~ msgid "Add organizer information" -#~ msgstr "Add organizer information" - -#~ msgid "Organizer Name" -#~ msgstr "Organizer Name" - -#~ msgid "Organizer Description" -#~ msgstr "Organizer Description" - -#~ msgid "Use ticketing system" -#~ msgstr "Use ticketing system" - -#~ msgid "You don't have any tickets added. Add one of your choice." -#~ msgstr "You don't have any tickets added. Add one of your choice." - -#~ msgid "Ticket URL" -#~ msgstr "Ticket URL" - -#~ msgid "Paypal accepts credit card, debit card and PayPal payments. To learn how it works " -#~ msgstr "Paypal accepts credit card, debit card and PayPal payments. To learn how it works " - -#~ msgid "Stripe accepts Visa, Master and Amex. Find out more about Stripe " -#~ msgstr "Stripe accepts Visa, Master and Amex. Find out more about Stripe " - -#~ msgid "You have linked your Stripe account successfully. Click Here to Disconnect you account." -#~ msgstr "You have linked your Stripe account successfully. Click Here to Disconnect you account." - -#~ msgid "YES, accept payment by Telegraphic Transfer(TT) / Bank Transfer " -#~ msgstr "YES, accept payment by Telegraphic Transfer(TT) / Bank Transfer " - -#~ msgid "YES, accept payment at the event (on site) " -#~ msgstr "YES, accept payment at the event (on site) " - -#~ msgid "Forward" -#~ msgstr "Forward" - -#~ msgid "Save draft" -#~ msgstr "Save draft" - -#~ msgid "Session, Microlocations, Session Types" -#~ msgstr "Session, Microlocations, Session Types" - -#~ msgid "Collect Speaker Details" -#~ msgstr "Collect Speaker Details" - -#~ msgid "Collect Session Details" -#~ msgstr "Collect Session Details" - -#~ msgid "Submit Proposal" -#~ msgstr "Submit Proposal" - -#~ msgid "Existing Sessions" -#~ msgstr "Existing Sessions" - -#~ msgid "Edit Session - " -#~ msgstr "Edit Session - " - -#~ msgid "No existing sessions" -#~ msgstr "No existing sessions" - -#~ msgid "Add Session Details" -#~ msgstr "Add Session Details" - -#~ msgid "For Cover Photos : 300x150px (2:1 ratio) image. For Avatar Photos : 150x150px (1:1 ratio) image." -#~ msgstr "For Cover Photos : 300x150px (2:1 ratio) image. For Avatar Photos : 150x150px (1:1 ratio) image." - -#~ msgid "Are you sure you would like to delete this proposal?" -#~ msgstr "Are you sure you would like to delete this proposal?" - -#~ msgid "Deleting the proposal will delete all the data associated with it." -#~ msgstr "Deleting the proposal will delete all the data associated with it." - -#~ msgid "Proceeding forward will delete the proposal titled:" -#~ msgstr "Proceeding forward will delete the proposal titled:" - -#~ msgid "Delete Proposal" -#~ msgstr "Delete Proposal" - -#~ msgid "Tax Invoices are sent to your attendees when you select this feature. Enter your registered business company name and address to be included on the tax invoice." -#~ msgstr "Tax Invoices are sent to your attendees when you select this feature. Enter your registered business company name and address to be included on the tax invoice." - -#~ msgid "Order Total" -#~ msgstr "Order Total" - -#~ msgid "Your order expired because you did not complete regsitration in time." -#~ msgstr "Your order expired because you did not complete regsitration in time." - -#~ msgid "Please click on event link given right to order your tickets again." -#~ msgstr "Please click on event link given right to order your tickets again." - -#~ msgid "Organizer " -#~ msgstr "Organizer " - -#~ msgid "About " -#~ msgstr "About " - -#~ msgid "Sales Ends" -#~ msgstr "Sales Ends" - -#~ msgid "Successfully linked with Facebook" -#~ msgstr "Successfully linked with Facebook" - -#~ msgid "Email Updates are " -#~ msgstr "Email Updates are " - -#~ msgid " - Organizer" -#~ msgstr " - Organizer" - -#~ msgid " - Co organizer" -#~ msgstr " - Co organizer" - -#~ msgid " - Track Organizer" -#~ msgstr " - Track Organizer" - -#~ msgid " - Registrar" -#~ msgstr " - Registrar" - -#~ msgid " - Moderator" -#~ msgstr " - Moderator" - -#~ msgid "With email" -#~ msgstr "With email" - -#~ msgid "Without email" -#~ msgstr "Without email" - -#~ msgid "Check In" -#~ msgstr "Check In" - -#~ msgid "%" -#~ msgstr "%" - -#~ msgid "US$ " -#~ msgstr "US$ " - -#~ msgid "Cofirmation mail has been sent again successfully!" -#~ msgstr "Cofirmation mail has been sent again successfully!" - -#~ msgid "Your account is unverified. Please verify by clicking on the confirmation link that has been emailed to you." -#~ msgstr "Your account is unverified. Please verify by clicking on the confirmation link that has been emailed to you." - -#~ msgid "Are you sure want to remove this slide?" -#~ msgstr "Are you sure want to remove this slide?" - -#~ msgid "No larger than" -#~ msgstr "No larger than" - -#~ msgid "Bold" -#~ msgstr "Bold" - -#~ msgid "Italic" -#~ msgstr "Italic" - -#~ msgid "Underline" -#~ msgstr "Underline" - -#~ msgid "Undo" -#~ msgstr "Undo" - -#~ msgid "Redo" -#~ msgstr "Redo" - -#~ msgid "This is a" -#~ msgstr "This is a" - -#~ msgid "Ticket" -#~ msgstr "Ticket" - -#~ msgid "Ticket would still be available for sale to Organizers." -#~ msgstr "Ticket would still be available for sale to Organizers." - -#~ msgid "Absorb Fees" -#~ msgstr "Absorb Fees" - -#~ msgid "If unchecked fees will be passed on to the buyer." -#~ msgstr "If unchecked fees will be passed on to the buyer." - -#~ msgid "Ticket Code Group" -#~ msgstr "Ticket Code Group" - -#~ msgid "Add Code Groups" -#~ msgstr "Add Code Groups" - -#~ msgid "comma separated groups" -#~ msgstr "comma separated groups" - -#~ msgid "Please click " -#~ msgstr "Please click " - -#~ msgid " to activate this module." -#~ msgstr " to activate this module." - -#~ msgid "Sales(US $)" -#~ msgstr "Sales(US $)" - -#~ msgid "Edit Speaker- " -#~ msgstr "Edit Speaker- " - -#~ msgid "From " -#~ msgstr "From " - -#~ msgid " to " -#~ msgstr " to " - -#~ msgid "action.buttonTitle" -#~ msgstr "action.buttonTitle" - -#~ msgid "Order tickets" -#~ msgstr "Order tickets" - -#~ msgid "You will be taken to " -#~ msgstr "You will be taken to " - -#~ msgid " to complete the purchase of tickets" -#~ msgstr " to complete the purchase of tickets" - -#~ msgid "Week" -#~ msgstr "Week" - -#~ msgid "Month" -#~ msgstr "Month" - -#~ msgid "error" -#~ msgstr "error" - -#~ msgid "Please enter the sadnbox username" -#~ msgstr "Please enter the sadnbox username" - -#~ msgid "Please enter the sandbox password" -#~ msgstr "Please enter the sandbox password" - -#~ msgid "Please enter the sandbox signature" -#~ msgstr "Please enter the sandbox signature" - -#~ msgid "Please enter the live username" -#~ msgstr "Please enter the live username" - -#~ msgid "Please enter the live password" -#~ msgstr "Please enter the live password" - -#~ msgid "Please enter the live signature" -#~ msgstr "Please enter the live signature" - -#~ msgid "Please enter a valid email address for super admin" -#~ msgstr "Please enter a valid email address for super admin" - -#~ msgid "Please enter your name " -#~ msgstr "Please enter your name " - -#~ msgid "Please enter your family name " -#~ msgstr "Please enter your family name " - -#~ msgid "en" -#~ msgstr "en" - -#~ msgid "Public URL" -#~ msgstr "Public URL" - -#~ msgid "Start Date" -#~ msgstr "Start Date" - -#~ msgid "End Date" -#~ msgstr "End Date" - -#~ msgid "Roles" -#~ msgstr "Roles" - -#~ msgid "draft" -#~ msgstr "draft" - -#~ msgid "Recipient" -#~ msgstr "Recipient" - -#~ msgid "Trigger" -#~ msgstr "Trigger" - -#~ msgid "Email Message" -#~ msgstr "Email Message" - -#~ msgid "Notification Message" -#~ msgstr "Notification Message" - -#~ msgid "Sent At" -#~ msgstr "Sent At" - -#~ msgid "Mail" -#~ msgstr "Mail" - -#~ msgid "Notification" -#~ msgstr "Notification" - -#~ msgid "User Control" -#~ msgstr "User Control" - -#~ msgid "Track" -#~ msgstr "Track" - -#~ msgid "Speaker" -#~ msgstr "Speaker" - -#~ msgid "Microlocation" -#~ msgstr "Microlocation" - -#~ msgid "Publish event (make event live)" -#~ msgstr "Publish event (make event live)" - -#~ msgid "Account Creation is necessary." -#~ msgstr "Account Creation is necessary." - -#~ msgid "Actor" -#~ msgstr "Actor" - -#~ msgid "Time" -#~ msgstr "Time" - -#~ msgid "Action" -#~ msgstr "Action" - -#~ msgid "For" -#~ msgstr "For" - -#~ msgid "Invoice#" -#~ msgstr "Invoice#" - -#~ msgid "Dated" -#~ msgstr "Dated" - -#~ msgid "Amount" -#~ msgstr "Amount" - -#~ msgid "Sent To" -#~ msgstr "Sent To" - -#~ msgid "Date of Submission" -#~ msgstr "Date of Submission" - -#~ msgid "User Links" -#~ msgstr "User Links" - -#~ msgid "Member Since" -#~ msgstr "Member Since" - -#~ msgid "Last Access" -#~ msgstr "Last Access" - -#~ msgid "Open Event compatible json package (.zip), PentabarfXML (.xml), iCalendar (.ical)" -#~ msgstr "Open Event compatible json package (.zip), PentabarfXML (.xml), iCalendar (.ical)" - -#~ msgid "type" -#~ msgstr "type" - -#~ msgid "User e-mail" -#~ msgstr "User e-mail" - -#~ msgid "Follow us on" -#~ msgstr "Follow us on" - -#~ msgid "Sandbox username" -#~ msgstr "Sandbox username" - -#~ msgid "Sandbox password" -#~ msgstr "Sandbox password" - -#~ msgid "Sandbox signature" -#~ msgstr "Sandbox signature" - -#~ msgid "Live username" -#~ msgstr "Live username" - -#~ msgid "Live password" -#~ msgstr "Live password" - -#~ msgid "Live signature" -#~ msgstr "Live signature" - -#~ msgid "Super Admin Email ID" -#~ msgstr "Super Admin Email ID" - -#~ msgid "The email ID of the super admin user created during initial deployment." -#~ msgstr "The email ID of the super admin user created during initial deployment." - -#~ msgid "Tokens" -#~ msgstr "Tokens" - -#~ msgid "Consumer secret" -#~ msgstr "Consumer secret" - -#~ msgid "List of supported currencies" -#~ msgstr "List of supported currencies" - -#~ msgid "Login with Twitter" -#~ msgstr "Login with Twitter" - -#~ msgid "Login with Google Plus" -#~ msgstr "Login with Google Plus" - -#~ msgid "Please complete registration within 10:00 minutes." -#~ msgstr "Please complete registration within 10:00 minutes." - -#~ msgid "After 10:00 minutes, the reservation we're holding will be released to others." -#~ msgstr "After 10:00 minutes, the reservation we're holding will be released to others." - -#~ msgid "Same as Ticket Buyer" -#~ msgstr "Same as Ticket Buyer" - -#~ msgid "Pay Via" -#~ msgstr "Pay Via" - -#~ msgid "By clicking \"Pay Now\", I acknowledge that I have read and agree with the Open Event terms of services and privacy policy." -#~ msgstr "By clicking \"Pay Now\", I acknowledge that I have read and agree with the Open Event terms of services and privacy policy." - -#~ msgid "Redeem Discount Code" -#~ msgstr "Redeem Discount Code" - -#~ msgid "Discount code" -#~ msgstr "Discount code" - -#~ msgid "Redeem" -#~ msgstr "Redeem" - -#~ msgid "Code Applied" -#~ msgstr "Code Applied" - -#~ msgid "Discount of" -#~ msgstr "Discount of" - -#~ msgid "over a period of" -#~ msgstr "over a period of" - -#~ msgid "month(s)" -#~ msgstr "month(s)" - -#~ msgid "Are you sure you wish to remove the discount applied ?" -#~ msgstr "Are you sure you wish to remove the discount applied ?" - -#~ msgid "turn off" -#~ msgstr "turn off" - -#~ msgid "turn on" -#~ msgstr "turn on" - -#~ msgid "Search Events..." -#~ msgstr "Search Events..." - -#~ msgid "Student/In" -#~ msgstr "Student/In" - -#~ msgid "Call for Speakers Open until" -#~ msgstr "Call for Speakers Open until" - -#~ msgid "facebook.com/" -#~ msgstr "facebook.com/" - -#~ msgid "Connect" -#~ msgstr "Connect" - -#~ msgid "twitter.com/" -#~ msgstr "twitter.com/" - -#~ msgid "instagram.com/" -#~ msgstr "instagram.com/" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "plus.google.com/" -#~ msgstr "plus.google.com/" - -#~ msgid "Edit event details" -#~ msgstr "Edit event details" - -#~ msgid "View event details" -#~ msgstr "View event details" - -#~ msgid "Delete event" -#~ msgstr "Delete event" - -#~ msgid "Submission Date" -#~ msgstr "Submission Date" - -#~ msgid "Last Modified" -#~ msgstr "Last Modified" - -#~ msgid "Email Sent" -#~ msgstr "Email Sent" - -#~ msgid "Not Confirmed" -#~ msgstr "Not Confirmed" - -#~ msgid "Browse edit history" -#~ msgstr "Browse edit history" - -#~ msgid "No. of entries" -#~ msgstr "No. of entries" - -#~ msgid "Canceled" -#~ msgstr "Canceled" - -#~ msgid "#" -#~ msgstr "#" - -#~ msgid "Access Code URL" -#~ msgstr "Access Code URL" - -#~ msgid "Accessible Ticket" -#~ msgstr "Accessible Ticket" - -#~ msgid "Validity" -#~ msgstr "Validity" - -#~ msgid "Edit Access Code" -#~ msgstr "Edit Access Code" - -#~ msgid "Delete Access Code" -#~ msgstr "Delete Access Code" - -#~ msgid "Deactivate Access code" -#~ msgstr "Deactivate Access code" - -#~ msgid "Price " -#~ msgstr "Price " - -#~ msgid "Item Total" -#~ msgstr "Item Total" - -#~ msgid "Select Payment Type" -#~ msgstr "Select Payment Type" - -#~ msgid "Telegraphic Transfer(TT)/Bank Transfer" -#~ msgstr "Telegraphic Transfer(TT)/Bank Transfer" - -#~ msgid "Onsite/Cash" -#~ msgstr "Onsite/Cash" - -#~ msgid "Free Order" -#~ msgstr "Free Order" - -#~ msgid "Order" -#~ msgstr "Order" - -#~ msgid "Ticket Price" -#~ msgstr "Ticket Price" - -#~ msgid "Discount code URL" -#~ msgstr "Discount code URL" - -#~ msgid "Discount Per Ticket" -#~ msgstr "Discount Per Ticket" - -#~ msgid "View orders / View attendees" -#~ msgstr "View orders / View attendees" - -#~ msgid "Total Amount" -#~ msgstr "Total Amount" - -#~ msgid "Buyer/Registration Contact " -#~ msgstr "Buyer/Registration Contact " - -#~ msgid "Mark all read" -#~ msgstr "Mark all read" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/es.po b/translations/es.po index 42778ea331b..a34414c5270 100644 --- a/translations/es.po +++ b/translations/es.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,39 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Message" -#~ msgstr "Mensaje" - -#~ msgid "Started" -#~ msgstr "Iniciado" - -#~ msgid "Locations" -#~ msgstr "Ubicaciones" - -#~ msgid "Support" -#~ msgstr "Soporte" - -#~ msgid "Roles" -#~ msgstr "Papels" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/fr.po b/translations/fr.po index dd2fe0c8551..4b457c8e669 100644 --- a/translations/fr.po +++ b/translations/fr.po @@ -27,12 +27,22 @@ msgid "Please enter your email ID" msgstr "Merci de saisir votre ID email" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" -msgstr "Merci de saisir un email ID valide" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" +msgstr "Merci de renseigner une adresse email valide" #: app/components/account/contact-info-section.js:35:23 #: app/components/forms/user-payment-info-form.js:82:23 @@ -49,10 +59,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -62,7 +81,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -78,6 +99,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -85,7 +107,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "Une erreur inattendue s'est produite." @@ -94,19 +122,6 @@ msgstr "Une erreur inattendue s'est produite." msgid "Email notifications updated successfully" msgstr "Les notifications emails sont mises à jour" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "Une erreur inattendue s'est produite." - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "Merci de saisir votre mot de passe actuel" @@ -119,7 +134,7 @@ msgstr "Merci de saisir un nouveau mot de passe" #: app/components/forms/register-form.js:34:23 #: app/components/forms/reset-password-form.js:40:23 msgid "Your password must have at least {ruleValue} characters" -msgstr "Votre mot de passe doit contenir au moins {ruleValue] caractères" +msgstr "Votre mot de passe doit contenir au moins {ruleValue} caractères" #: app/components/account/password-section.js:38:23 #: app/components/forms/register-form.js:43:23 @@ -162,13 +177,6 @@ msgstr "L'opération se poursuit." msgid "Task failed." msgstr "L'opération a échoué." -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "Une erreur inattendue s'est produite." - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -318,15 +326,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "Merci de renseigner une adresse email valide" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -541,13 +540,6 @@ msgstr "Merci de saisir le jeton pour SendGrid" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "Les éléments existants doivent être terminés avant que des nouveaux puissent être ajoutés." @@ -637,13 +629,6 @@ msgstr "Merci de saisir votre prénom" msgid "Please enter your email" msgstr "Merci de saisir votre email" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "Merci de saisir un email valide" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -758,6 +743,11 @@ msgstr "Merci de renseigner votre code postal" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "Merci de renseigner un mot de passe" @@ -6960,582 +6950,3 @@ msgstr "La semaine prochaine" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "Dates spécifiques" - -#~ msgid "Download Event as" -#~ msgstr "Télécharger l'évènement en tant que" - -#~ msgid "Once the event is live and the schedule is published," -#~ msgstr "Une fois l'évènement en ligne et le programme publié," - -#~ msgid "Alternatively, you can download the" -#~ msgstr "Vous pouvez aussi télécharger le" - -#~ msgid "Please enter a valid twitter url" -#~ msgstr "Merci de saisir une URL twitter valide" - -#~ msgid "Please enter a valid facebook url" -#~ msgstr "Merci de saisir une url facebook valide" - -#~ msgid "Please enter a valid google plus url" -#~ msgstr "Merci de saisir une url google plus valide" - -#~ msgid "Please enter a valid youtube url" -#~ msgstr "Merci de saisir une url youtube url" - -#~ msgid "Please enter a valid github url" -#~ msgstr "Merci de saisir une url github valide" - -#~ msgid "Please enter a valid email address" -#~ msgstr "Merci de saisir une adresse email valide" - -#~ msgid "Please enter the username for SMTP" -#~ msgstr "Merci de saisir le nom d'utilisateur du SMTP" - -#~ msgid "Please enter the password for SMTP" -#~ msgstr "Merci de saisir le mot de passe du SMTP" - -#~ msgid "Please enter the application secret key" -#~ msgstr "Merci de saisir la clé secrète de l'application" - -#~ msgid "Your application secret key must have at least {ruleValue} characters" -#~ msgstr "La clé secrète de votre application doit contenir au moins {ruleValue} caractères" - -#~ msgid "Please enter a valid registration time limit between 1 to 60 minutes." -#~ msgstr "Merci de saisir une durée limite d'enregistrement comprise entre 1 et 60 minutes." - -#~ msgid "Please enter a valid github profile url" -#~ msgstr "Merci de renseigner l'url de votre compte github" - -#~ msgid "Please enter github link" -#~ msgstr "Merci de saisir le lien github" - -#~ msgid "Please enter your city " -#~ msgstr "Merci de renseigner votre ville " - -#~ msgid "Please specify your choice of payment method " -#~ msgstr "Merci de sélectionner votre méthode de paiement " - -#~ msgid "Please enter linkedin link" -#~ msgstr "Merci de saisir le lien linkedin" - -#~ msgid "Please enter a valid linkedin profile url" -#~ msgstr "Merci de saisir un lien linkedin valide" - -#~ msgid "Please select the Privacy" -#~ msgstr "Merci de sélectionner le niveau de confidentialité" - -#~ msgid "Please enter a valid email address for user" -#~ msgstr "Merci de saisir une adresse email valide pour cet utilisateur" - -#~ msgid "Please enter your phone" -#~ msgstr "Merci de saisir votre téléphone" - -#~ msgid "Your event must have a location before it can be published." -#~ msgstr "Votre évènement doit avoir un lieu pour pouvoir être publié." - -#~ msgid "Oops something went wrong1. Please try again" -#~ msgstr "Oups quelque-chose s'est mal passé (1). Essayer ultérieurement" - -#~ msgid "Oops something went wrong2. Please try again" -#~ msgstr "Oups quelque-chose s'est mal passé (2). Essayer ultérieurement" - -#~ msgid "Oops something went wrong4. Please try again" -#~ msgstr "Oups quelque-chose s'est mal passé (4). Essayer ultérieurement" - -#~ msgid "Session has been accepted and speaker has been notified via email." -#~ msgstr "La session a été acceptée et l'orateur prévenu par email." - -#~ msgid "Session has been accepted" -#~ msgstr "La session a été acceptée" - -#~ msgid "Session has been confirmed and speaker has been notified via email." -#~ msgstr "La session a été confirmée et l'orateur prévenu par email." - -#~ msgid "Session has been confirmed" -#~ msgstr "La session a été confirmée" - -#~ msgid "Session has been rejected and speaker has been notified via email." -#~ msgstr "La session a été rejetée et l'orateur prévenu par email." - -#~ msgid "Session has been rejected" -#~ msgstr "La session a été rejetée" - -#~ msgid "An unexpected error has occured. Discount code cannot be created." -#~ msgstr "Une erreur inattendue s'est produite. Le code de remise ne peut pas être créé." - -#~ msgid "Attendee CheckedIn status modified successfully." -#~ msgstr "Le statut CheckedIn du participant a été modifié." - -#~ msgid "An unexpected error has occured" -#~ msgstr "Une erreur inattendue s'est produite" - -#~ msgid "Proposal has been deleted successfully." -#~ msgstr "La soumission a été supprimée." - -#~ msgid "Modules" -#~ msgstr "Modules" - -#~ msgid "Fees" -#~ msgstr "Tarifs" - -#~ msgid "Saved" -#~ msgstr "Sauvegardé" - -#~ msgid "Order Form" -#~ msgstr "Bon de commande" - -#~ msgid "All sessions" -#~ msgstr "Toutes les sessions" - -#~ msgid "Today's Sessions" -#~ msgstr "Les sessions de la journée" - -#~ msgid "Week's Sessions" -#~ msgstr "Les sessions de la semaine" - -#~ msgid "Month's Sessions" -#~ msgstr "Les sessions du mois" - -#~ msgid "Contact Info" -#~ msgstr "Information de contact" - -#~ msgid "Bengali/Bangla" -#~ msgstr "Bengali/Bangla" - -#~ msgid "Chinese (Simplified)" -#~ msgstr "Chinoix (Simplifié)" - -#~ msgid "Chinese (Traditional)" -#~ msgstr "Chinoix (Traditionnel)" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "French" -#~ msgstr "Français" - -#~ msgid "German" -#~ msgstr "Allemand" - -#~ msgid "Indonesian" -#~ msgstr "Indonésien" - -#~ msgid "Korean" -#~ msgstr "Coréen" - -#~ msgid "Polish" -#~ msgstr "Polonais" - -#~ msgid "Spanish" -#~ msgstr "Espagnol" - -#~ msgid "Thai" -#~ msgstr "Thaïlandais" - -#~ msgid "Vietnamese" -#~ msgstr "Vietnamien" - -#~ msgid "Hindi" -#~ msgstr "Hindi" - -#~ msgid "Japanese" -#~ msgstr "Japonais" - -#~ msgid "Russian" -#~ msgstr "Russe" - -#~ msgid "In last 7 days " -#~ msgstr "Depuis 7 jours " - -#~ msgid "In last 1 month " -#~ msgstr "Depuis 1 mois " - -#~ msgid "Ticketing" -#~ msgstr "Billetterie" - -#~ msgid "Payments" -#~ msgstr "Paiements" - -#~ msgid "Donations" -#~ msgstr "Donations" - -#~ msgid "service.name" -#~ msgstr "service.name" - -#~ msgid "Completed Orders " -#~ msgstr "Commandes terminées " - -#~ msgid "Pending Orders " -#~ msgstr "Commandes en cours " - -#~ msgid "Fee Summary" -#~ msgstr "Résumé des frais" - -#~ msgid "Saved Events" -#~ msgstr "Evènements enregistrés" - -#~ msgid "has caused an error. " -#~ msgstr "a généré une erreur. " - -#~ msgid "Previous Events" -#~ msgstr "Evènements précédents" - -#~ msgid "Message" -#~ msgstr "Message" - -#~ msgid "Started" -#~ msgstr "Démarré" - -#~ msgid "Check your event here" -#~ msgstr "Checker votre évènement ici" - -#~ msgid "8 days ago" -#~ msgstr "8 jours plus tôt" - -#~ msgid " version of the schedule will be available at:" -#~ msgstr " une version du programme sera disponible à:" - -#~ msgid " here" -#~ msgstr " ici" - -#~ msgid "Download " -#~ msgstr "Télécharger " - -#~ msgid "(view revisions)" -#~ msgstr "(voir revisions)" - -#~ msgid "No Session Type present. " -#~ msgstr "Nb type de session. " - -#~ msgid "No social links present. " -#~ msgstr "Pas de liens sociaux. " - -#~ msgid "Manage roles" -#~ msgstr "Gérer les rôles" - -#~ msgid "Sitemap" -#~ msgstr "Sitemap" - -#~ msgid "Locations" -#~ msgstr "Lieux" - -#~ msgid "Nearby Events" -#~ msgstr "Evènements à proximité" - -#~ msgid "Connect with us" -#~ msgstr "Contactez-nous" - -#~ msgid "Support" -#~ msgstr "Support" - -#~ msgid "Github" -#~ msgstr "Github" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Google +" -#~ msgstr "Google +" - -#~ msgid "Are you sure you would like to delete this page?" -#~ msgstr "Etes-vous certains de vouloir supprimer cette page ?" - -#~ msgid "Choose a searching option to be used in the backend" -#~ msgstr "Choisir une option de recherche à utiliser en backend" - -#~ msgid "Flask Filtering" -#~ msgstr "Flask Filtering" - -#~ msgid "Elastic Search (Coming Soon)" -#~ msgstr "Elastic Search (à venir)" - -#~ msgid "App secret key" -#~ msgstr "App secret key" - -#~ msgid "Secret key for the application. Recommended is a random string minimum 20 characters in length." -#~ msgstr "Clé secrète de l'application. Une chaîne d'au moins 20 caractères aléatoires est recommandée." - -#~ msgid "Add Fee Settings for the event" -#~ msgstr "Ajouter des paramètres de tarification pour cet évènement" - -#~ msgid "Are you sure you would like to remove this ticket?" -#~ msgstr "Etes-vous certains de vouloir supprimer ce billet ?" - -#~ msgid "Amount (US$)" -#~ msgstr "Montant ($ US)" - -#~ msgid "Registration Options" -#~ msgstr "Options d'enregistrement" - -#~ msgid "REGISTRATION TIME LIMIT" -#~ msgstr "REGISTRATION TIME LIMIT" - -#~ msgid "Login with Facebook" -#~ msgstr "Se connecter avec Facebook" - -#~ msgid "Ticket Holder " -#~ msgstr "Utilisateur du billet " - -#~ msgid " -for- " -#~ msgstr " -pour- " - -#~ msgid "Stripe" -#~ msgstr "Stripe" - -#~ msgid "Please complete registration within " -#~ msgstr "Merci de compléter l'enregistrement dans les " - -#~ msgid "After " -#~ msgstr "Après " - -#~ msgid "password" -#~ msgstr "mot de passe" - -#~ msgid "Details of the user" -#~ msgstr "Détails de l'utilisateur" - -#~ msgid "Select Event Image" -#~ msgstr "Sélectionner l'image de l'évènement" - -#~ msgid "Add organizer information" -#~ msgstr "Ajouter les informations sur l'organisateur" - -#~ msgid "Organizer Name" -#~ msgstr "Nom de l'organisateur" - -#~ msgid "Organizer Description" -#~ msgstr "Description de l'organisateur" - -#~ msgid "Use ticketing system" -#~ msgstr "Utiliser la billeterie" - -#~ msgid "You don't have any tickets added. Add one of your choice." -#~ msgstr "Vous n'avez ajouté aucun billet. Ajouter celui de votre choix." - -#~ msgid "Ticket URL" -#~ msgstr "URL du billet" - -#~ msgid "Paypal accepts credit card, debit card and PayPal payments. To learn how it works " -#~ msgstr "PayPal accepte les cartes de crédits, de débits et les paiements PayPal. Pour apprendre comment cela fonctionne " - -#~ msgid "Stripe accepts Visa, Master and Amex. Find out more about Stripe " -#~ msgstr "Stripe accepte les cartes dVisa, Master et Amex. En savoir plus sur Stripe " - -#~ msgid "You have linked your Stripe account successfully. Click Here to Disconnect you account." -#~ msgstr "Vous avez lié votre compte Stripe. Cliquer ici pour déconnecter votre compte." - -#~ msgid "YES, accept payment by Telegraphic Transfer(TT) / Bank Transfer " -#~ msgstr "OUI, accepter le paiement par virement " - -#~ msgid "YES, accept payment at the event (on site) " -#~ msgstr "OUI, accepter le paiement sur le site de l'évènement " - -#~ msgid "Forward" -#~ msgstr "Suivant" - -#~ msgid "Save draft" -#~ msgstr "Sauvegarder le brouillon" - -#~ msgid "Session, Microlocations, Session Types" -#~ msgstr "Sessions, salles et types de session" - -#~ msgid "Collect Speaker Details" -#~ msgstr "Collecter les informations sur l'orateur" - -#~ msgid "Collect Session Details" -#~ msgstr "Collecter les informations sur la session" - -#~ msgid "Submit Proposal" -#~ msgstr "Soumettre une proposition" - -#~ msgid "Existing Sessions" -#~ msgstr "Sessions existantes" - -#~ msgid "Edit Session - " -#~ msgstr "Modifier la session - " - -#~ msgid "No existing sessions" -#~ msgstr "Pas de session existante" - -#~ msgid "Add Session Details" -#~ msgstr "Ajouter les informations de la session" - -#~ msgid "For Cover Photos : 300x150px (2:1 ratio) image. For Avatar Photos : 150x150px (1:1 ratio) image." -#~ msgstr "Pour les photos de couverture : taille de 300x150px (2:1 ratio). Pour les photos d'avatar : taille de 150x150px (1:1 ratio)." - -#~ msgid "Are you sure you would like to delete this proposal?" -#~ msgstr "Etes-vous certains de vouloir supprimer cette soumission?" - -#~ msgid "Deleting the proposal will delete all the data associated with it." -#~ msgstr "La suppression d'une soumission entraine la suppression de toutes les données associées." - -#~ msgid "Proceeding forward will delete the proposal titled:" -#~ msgstr "Aller au suivant supprimera le titre de la soumission:" - -#~ msgid "Delete Proposal" -#~ msgstr "Supprimer la soumission" - -#~ msgid "Tax Invoices are sent to your attendees when you select this feature. Enter your registered business company name and address to be included on the tax invoice." -#~ msgstr "Les factures avec TVA sont envoyées aux partipants quand vous sélectionner cette fonction. Saisir le nom et l'adresse de votre société à mentionner sur les factures." - -#~ msgid "Order Total" -#~ msgstr "Commande total" - -#~ msgid "Your order expired because you did not complete regsitration in time." -#~ msgstr "Votre commande a expiré car vous n'avez pas terminé l'enregistrement à temps." - -#~ msgid "Please click on event link given right to order your tickets again." -#~ msgstr "Merci de cliquer sur le lien pour commander vos tickets de nouveau." - -#~ msgid "Organizer " -#~ msgstr "Organisateur " - -#~ msgid "About " -#~ msgstr "A propos " - -#~ msgid "Sales Ends" -#~ msgstr "Les ventes se terminent" - -#~ msgid "Successfully linked with Facebook" -#~ msgstr "Liaison à Facebook réussie" - -#~ msgid "Email Updates are " -#~ msgstr "Les mises à jour Email sont " - -#~ msgid " - Organizer" -#~ msgstr " - Organisateur" - -#~ msgid " - Co organizer" -#~ msgstr " - Co organisateur" - -#~ msgid " - Track Organizer" -#~ msgstr " - organisateur de Track" - -#~ msgid " - Registrar" -#~ msgstr " - Greffier" - -#~ msgid " - Moderator" -#~ msgstr " - Moderateur" - -#~ msgid "With email" -#~ msgstr "Avec l'email" - -#~ msgid "Without email" -#~ msgstr "Sans email" - -#~ msgid "Check In" -#~ msgstr "Check In" - -#~ msgid "%" -#~ msgstr "%" - -#~ msgid "US$ " -#~ msgstr "US$ " - -#~ msgid "Cofirmation mail has been sent again successfully!" -#~ msgstr "Le mail de confirmation a été envoyé de nouveau!" - -#~ msgid "Your account is unverified. Please verify by clicking on the confirmation link that has been emailed to you." -#~ msgstr "Votre compte n'est pas vérifié. Merci de cliquer sur le lien de confirmation que vous avez reçu par email." - -#~ msgid "Are you sure want to remove this slide?" -#~ msgstr "Etes-vous certains de vouloir supprimer ce slide ?" - -#~ msgid "No larger than" -#~ msgstr "Pas plus grand que" - -#~ msgid "Bold" -#~ msgstr "Gras" - -#~ msgid "Italic" -#~ msgstr "Italique" - -#~ msgid "Underline" -#~ msgstr "Souligné" - -#~ msgid "Undo" -#~ msgstr "Défaire" - -#~ msgid "Redo" -#~ msgstr "Refaire" - -#~ msgid "This is a" -#~ msgstr "Ceci est un" - -#~ msgid "Ticket" -#~ msgstr "billet" - -#~ msgid "Ticket would still be available for sale to Organizers." -#~ msgstr "Le billet sera encore disponible à la vente pour les organisateurs." - -#~ msgid "Absorb Fees" -#~ msgstr "Inclure les taxes" - -#~ msgid "If unchecked fees will be passed on to the buyer." -#~ msgstr "Si décocher les taxes seront à la charge de l'acheteur." - -#~ msgid "Ticket Code Group" -#~ msgstr "Code du groupe de billet" - -#~ msgid "Add Code Groups" -#~ msgstr "Ajouter les codes de groupes" - -#~ msgid "comma separated groups" -#~ msgstr "groupes séparés par des virgules" - -#~ msgid "Please click " -#~ msgstr "Merci de cliquer " - -#~ msgid " to activate this module." -#~ msgstr " pour activer ce module." - -#~ msgid "Sales(US $)" -#~ msgstr "Ventes ($ US)" - -#~ msgid "Edit Speaker- " -#~ msgstr "Modifier l'orateur - " - -#~ msgid "From " -#~ msgstr "Depuis " - -#~ msgid " to " -#~ msgstr " jusqu'à " - -#~ msgid "action.buttonTitle" -#~ msgstr "action.buttonTitle" - -#~ msgid "Order tickets" -#~ msgstr "Commande de billets" - -#~ msgid "You will be taken to " -#~ msgstr "Vous serez amené à " - -#~ msgid " to complete the purchase of tickets" -#~ msgstr " pour compléter l'achat des billets" - -#~ msgid "Week" -#~ msgstr "Semaine" - -#~ msgid "Month" -#~ msgstr "Mois" - -#~ msgid "error" -#~ msgstr "erreur" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/hi.po b/translations/hi.po index 2568624e4a3..2ac9d6ef310 100644 --- a/translations/hi.po +++ b/translations/hi.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" diff --git a/translations/id.po b/translations/id.po index 3d7eb0f796b..b2798c3012b 100644 --- a/translations/id.po +++ b/translations/id.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,24 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/ja.po b/translations/ja.po index 33574148579..3e9a9707933 100644 --- a/translations/ja.po +++ b/translations/ja.po @@ -28,11 +28,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -50,10 +60,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -63,7 +82,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -79,6 +100,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -86,7 +108,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -95,19 +123,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -163,13 +178,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -318,15 +326,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -539,13 +538,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -635,13 +627,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -756,6 +741,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6950,1451 +6940,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "Modules" -#~ msgstr "モジュール" - -#~ msgid "Ticketing" -#~ msgstr "発券" - -#~ msgid "Payments" -#~ msgstr "支払い" - -#~ msgid "Donations" -#~ msgstr "寄付" - -#~ msgid "Message" -#~ msgstr "メッセージ" - -#~ msgid "Started" -#~ msgstr "開始" - -#~ msgid "Sitemap" -#~ msgstr "サイトマップ" - -#~ msgid "Locations" -#~ msgstr "場所" - -#~ msgid "Support" -#~ msgstr "サポート" - -#~ msgid "Github" -#~ msgstr "GitHub" - -#~ msgid "Youtube" -#~ msgstr "YouTube" - -#~ msgid "App secret key" -#~ msgstr "アプリ秘密キー" - -#~ msgid "Secret key for the application. Recommended is a random string minimum 20 characters in length." -#~ msgstr "アプリケーションの秘密キー。ランダムな文字列を最小 20 文字で入れることをお勧めします。" - -#~ msgid "Stripe" -#~ msgstr "Stripe" - -#~ msgid "Organizer Description" -#~ msgstr "主催者の説明" - -#~ msgid "Ticket URL" -#~ msgstr "チケット URL" - -#~ msgid "Submit Proposal" -#~ msgstr "申し込みを提出" - -#~ msgid "Existing Sessions" -#~ msgstr "既存のセッション" - -#~ msgid "Check In" -#~ msgstr "チェックイン" - -#~ msgid "Undo" -#~ msgstr "元に戻す" - -#~ msgid "Ticket" -#~ msgstr "チケット" - -#~ msgid "Ticket would still be available for sale to Organizers." -#~ msgstr "チケットは、主催者への販売はまだ可能です。" - -#~ msgid "Absorb Fees" -#~ msgstr "手数料を吸収" - -#~ msgid "Ticket Code Group" -#~ msgstr "チケット コード グループ" - -#~ msgid "Public URL" -#~ msgstr "公開 URL" - -#~ msgid "Start Date" -#~ msgstr "開始日" - -#~ msgid "End Date" -#~ msgstr "終了日" - -#~ msgid "Roles" -#~ msgstr "ロール" - -#~ msgid "Recipient" -#~ msgstr "受信者" - -#~ msgid "Trigger" -#~ msgstr "トリガー" - -#~ msgid "Email Message" -#~ msgstr "メール メッセージ" - -#~ msgid "Notification Message" -#~ msgstr "通知メッセージ" - -#~ msgid "Track" -#~ msgstr "トラック" - -#~ msgid "Speaker" -#~ msgstr "スピーカー" - -#~ msgid "Microlocation" -#~ msgstr "マイクロロケーション" - -#~ msgid "Actor" -#~ msgstr "アクター" - -#~ msgid "Time" -#~ msgstr "時間" - -#~ msgid "Action" -#~ msgstr "操作" - -#~ msgid "For" -#~ msgstr "宛先" - -#~ msgid "Dated" -#~ msgstr "日付" - -#~ msgid "Amount" -#~ msgstr "金額" - -#~ msgid "Date of Submission" -#~ msgstr "提出の日付" - -#~ msgid "User Links" -#~ msgstr "ユーザー リンク" - -#~ msgid "Member Since" -#~ msgstr "加入" - -#~ msgid "Last Access" -#~ msgstr "最終アクセス" - -#~ msgid "Sandbox username" -#~ msgstr "サンドボックス ユーザー名" - -#~ msgid "Sandbox password" -#~ msgstr "サンドボックス パスワード" - -#~ msgid "Sandbox signature" -#~ msgstr "サンド ボックス署名" - -#~ msgid "Live username" -#~ msgstr "ライブ ユーザー名" - -#~ msgid "Live password" -#~ msgstr "ライブ パスワード" - -#~ msgid "Live signature" -#~ msgstr "ライブ署名" - -#~ msgid "Super Admin Email ID" -#~ msgstr "Super Admin メール ID" - -#~ msgid "The email ID of the super admin user created during initial deployment." -#~ msgstr "初期デプロイメント時に作成した super admin ユーザーのメール ID。" - -#~ msgid "Tokens" -#~ msgstr "トークン" - -#~ msgid "Consumer secret" -#~ msgstr "コンシューマー 秘密" - -#~ msgid "After 10:00 minutes, the reservation we're holding will be released to others." -#~ msgstr "10 分後、保持している予約を他の人に解放します。" - -#~ msgid "Pay Via" -#~ msgstr "支払い" - -#~ msgid "Redeem Discount Code" -#~ msgstr "割引コードの交換" - -#~ msgid "Submission Date" -#~ msgstr "提出日" - -#~ msgid "Last Modified" -#~ msgstr "最終更新" - -#~ msgid "Email Sent" -#~ msgstr "メールを送信済" - -#~ msgid "Access Code URL" -#~ msgstr "アクセス コード URL" - -#~ msgid "Accessible Ticket" -#~ msgstr "アクセス チケット" - -#~ msgid "Validity" -#~ msgstr "妥当性" - -#~ msgid "Item Total" -#~ msgstr "アイテム合計" - -#~ msgid "Onsite/Cash" -#~ msgstr "オンサイト/現金" - -#~ msgid "Free Order" -#~ msgstr "無料注文" - -#~ msgid "Order" -#~ msgstr "注文" - -#~ msgid "Ticket Price" -#~ msgstr "チケット価格" - -#~ msgid "Discount Per Ticket" -#~ msgstr "チケットあたりの割引" - -#~ msgid "Total Amount" -#~ msgstr "合計金額" - -#~ msgid "Mark all read" -#~ msgstr "すべて既読にする" - -#~ msgid "Google" -#~ msgstr "Google" - -#~ msgid "Mark All as Read" -#~ msgstr "すべて既読にする" - -#~ msgid "We are not able to understand what you require" -#~ msgstr "あなたが必要とするものを理解できません" - -#~ msgid "We don't seem to speak a common language. If you're facing this issue frequently, drop in an email at our support address so that we can see what's the issue." -#~ msgstr "私たちが共通の言語を話すようには思われません。 この問題が頻繁に発生している場合は、問題の原因を確認できるようにサポートアドレスにメールをお送りください。" - -#~ msgid "Access denied" -#~ msgstr "アクセスが拒否されました" - -#~ msgid "Sorry, but you don't have permission access to this page." -#~ msgstr "申し訳ありません。このページへのアクセス許可がありません。" - -#~ msgid "You got" -#~ msgstr "完了" - -#~ msgid "Sorry but we couldn't find this page since the page you are looking for does not exist." -#~ msgstr "申し訳ありません。探しているページが存在しないため、このページを見つけることができませんでした。" - -#~ msgid "We seem to be having some issues on our side." -#~ msgstr "私たちの側にいくつかの問題を抱えているようです。" - -#~ msgid "Inconvenience is regretted. We'll fix this as soon as possible." -#~ msgstr "不便をお掛けして申し訳ありません。 できるだけ早くこれを修正します。" - -#~ msgid "No upcoming events available at this time" -#~ msgstr "現時点では表示可能な直近のイベントはありません" - -#~ msgid "No call for speakers open at this time" -#~ msgstr "現時点でスピーカー募集は行っていません" - -#~ msgid "General Information" -#~ msgstr "全般情報" - -#~ msgid "Account Management" -#~ msgstr "アカウントの管理" - -#~ msgid "View own profile" -#~ msgstr "自分のプロフィールを見る" - -#~ msgid "Attending Events" -#~ msgstr "参加しているイベント" - -#~ msgid "My Event Tickets" -#~ msgstr "マイ イベント チケット" - -#~ msgid "Managing Events" -#~ msgstr "イベントの管理" - -#~ msgid "List own events" -#~ msgstr "自分のイベントの一覧" - -#~ msgid "Ticket Information" -#~ msgstr "チケット情報" - -#~ msgid "Click to order tickets" -#~ msgstr "クリックしてチケットを注文してください" - -#~ msgid "You will be taken to" -#~ msgstr "そこから" - -#~ msgid "to complete the purchase of the tickets" -#~ msgstr "チケットの購入を完了してください" - -#~ msgid "Ticket type" -#~ msgstr "チケットの種類" - -#~ msgid "Sales ends" -#~ msgstr "販売終了" - -#~ msgid "This ticket's sale has ended" -#~ msgstr "このチケットの販売は終了しました" - -#~ msgid "This ticket's sale will start" -#~ msgstr "このチケットの販売が開始されます" - -#~ msgid "No tickets available right now." -#~ msgstr "現在、利用可能なチケットはありません。" - -#~ msgid "Yet to Open" -#~ msgstr "まだオープンしていません" - -#~ msgid "Please login to submit your proposal" -#~ msgstr "ログインして、提案を提出してください" - -#~ msgid "Login/SignUp" -#~ msgstr "ログイン/サインアップ" - -#~ msgid "Register as a Speaker" -#~ msgstr "スピーカーとして登録" - -#~ msgid "Propose Session" -#~ msgstr "セッションを提案" - -#~ msgid "Add Speaker Information" -#~ msgstr "スピーカーの情報を追加" - -#~ msgid "Add Session Proposal" -#~ msgstr "セッションの提案を追加" - -#~ msgid "No sessions have been published yet" -#~ msgstr "セッションがまだ公開されていません" - -#~ msgid "Other Sponsors" -#~ msgstr "他のスポンサー" - -#~ msgid "Rooms View" -#~ msgstr "ルーム ビュー" - -#~ msgid "Tracks View" -#~ msgstr "トラック ビュー" - -#~ msgid "Sessions View" -#~ msgstr "セッション ビュー" - -#~ msgid "Sessions loading" -#~ msgstr "セッションの読み込み中" - -#~ msgid "All the timings are in" -#~ msgstr "すべてのタイミングは" - -#~ msgid "Published on" -#~ msgstr "公開" - -#~ msgid "All Event Types" -#~ msgstr "すべてのイベントの種類" - -#~ msgid "Custom Dates" -#~ msgstr "カスタム日付" - -#~ msgid "Filter" -#~ msgstr "フィルター" - -#~ msgid "Loading" -#~ msgstr "読み込み中" - -#~ msgid "No events found for the selected parameters." -#~ msgstr "選択したパラメーターのイベントはありません。" - -#~ msgid "Pay Via Stripe" -#~ msgstr "Stripe で支払い" - -#~ msgid "Invoice" -#~ msgstr "請求書" - -#~ msgid "Print Invoice" -#~ msgstr "請求書の印刷" - -#~ msgid "Your Invoice" -#~ msgstr "あなたの請求書" - -#~ msgid "Personal Information" -#~ msgstr "個人情報" - -#~ msgid "to your account to continue" -#~ msgstr "引き続きアカウントに" - -#~ msgid "First name" -#~ msgstr "名" - -#~ msgid "Last name" -#~ msgstr "姓" - -#~ msgid "Confirm Email" -#~ msgstr "メールの確認" - -#~ msgid "Code" -#~ msgstr "コード" - -#~ msgid "Pay" -#~ msgstr "支払" - -#~ msgid "By clicking \"Pay Now\", I acknowledge that I have read and agree with our terms of service, and privacy policy." -#~ msgstr "「今すぐ支払う」をクリックすることで、利用規約とプライバシーポリシーを読んで、同意します。" - -#~ msgid "Billing Details" -#~ msgstr "請求の詳細" - -#~ msgid "Paid Via" -#~ msgstr "支払い" - -#~ msgid "Transaction" -#~ msgstr "トランザクション" - -#~ msgid "Card Name" -#~ msgstr "カードの名前" - -#~ msgid "Payment Date" -#~ msgstr "支払日" - -#~ msgid "Invoice number" -#~ msgstr "請求書番号" - -#~ msgid "Invoice Summary" -#~ msgstr "請求書の概要" - -#~ msgid "Fee Percent" -#~ msgstr "料金パーセント" - -#~ msgid "Invoice total" -#~ msgstr "請求書合計" - -#~ msgid "Contact the organizer" -#~ msgstr "主催者にお問い合わせください" - -#~ msgid "Your Order" -#~ msgstr "ご注文" - -#~ msgid "Please complete registration within 10:00 minutes" -#~ msgstr "10 分以内に登録を完了してください" - -#~ msgid "Have you used Open Event before" -#~ msgstr "以前に Open Event を使用していますか" - -#~ msgid "To Your Account to continue" -#~ msgstr "アカウントを継続するには" - -#~ msgid "Ticket Holders' Information" -#~ msgstr "チケット保有者の情報" - -#~ msgid "First" -#~ msgstr "最初" - -#~ msgid "name" -#~ msgstr "名前" - -#~ msgid "Telegraphic Transfer(TT) / Bank Transfer" -#~ msgstr "電信振替 (TT) / 銀行振込" - -#~ msgid "By clicking" -#~ msgstr "クリックして" - -#~ msgid "I acknowledge that I have read and agree with" -#~ msgstr "以下を読み、同意することを認めます" - -#~ msgid "the" -#~ msgstr " " - -#~ msgid "Open Event terms of service, and privacy policy." -#~ msgstr "Open Event 利用規約、およびプライバシー ポリシー。" - -#~ msgid "Order now" -#~ msgstr "今すぐ注文" - -#~ msgid "Processing" -#~ msgstr "処理中" - -#~ msgid "Card Nam" -#~ msgstr "カードの名前" - -#~ msgid "Payment Due" -#~ msgstr "支払期限" - -#~ msgid "No tickets selected." -#~ msgstr "チケットが選択されていません。" - -#~ msgid "Discount Applied by " -#~ msgstr "適用される割引 " - -#~ msgid "Order total" -#~ msgstr "注文の合計" - -#~ msgid "Date and Time" -#~ msgstr "日付と時間" - -#~ msgid "Copyright Info" -#~ msgstr "著作権情報" - -#~ msgid "Origin Info" -#~ msgstr "オリジナル情報" - -#~ msgid "Placeholder" -#~ msgstr "プレースホルダー" - -#~ msgid "Select Placeholder" -#~ msgstr "プレースホルダーを選択" - -#~ msgid "For Cover Photos : We recommend using at least a 1300x550px (2:1 ratio) image" -#~ msgstr "表紙写真 : 少なくとも 1300x550px (2:1 レシオ) 画像の使用をお勧めします" - -#~ msgid "For Avatar Photos : We recommend using at least a 360x360px (1:1 ratio) image" -#~ msgstr "アバター写真 : 少なくとも 360x360px (1:1 レシオ) 画像の使用をお勧めします" - -#~ msgid "The images should be no larger than 10MB" -#~ msgstr "画像は 10 MB 以下にする必要があります" - -#~ msgid "Copyright Information" -#~ msgstr "著作権情報" - -#~ msgid "Origin Information" -#~ msgstr "オリジナル情報" - -#~ msgid "Update .PO files" -#~ msgstr ".PO ファイルを更新" - -#~ msgid "language" -#~ msgstr "言語" - -#~ msgid "Debug" -#~ msgstr "デバッグ" - -#~ msgid "Drafts" -#~ msgstr "下書き" - -#~ msgid "Restore Event" -#~ msgstr "イベントを復元" - -#~ msgid "All Drafts" -#~ msgstr "すべての下書き" - -#~ msgid "All Deleted Events" -#~ msgstr "すべての削除済みのイベント" - -#~ msgid "System Messages" -#~ msgstr "システム メッセージ" - -#~ msgid "Time/Date of Sent out" -#~ msgstr "送信の時間/日付" - -#~ msgid "Enable/Disable Modules" -#~ msgstr "モジュールを有効/無効にする" - -#~ msgid "Page Details" -#~ msgstr "ページの詳細" - -#~ msgid "NAME" -#~ msgstr "名前" - -#~ msgid "TITLE" -#~ msgstr "タイトル" - -#~ msgid "DESCRIPTION" -#~ msgstr "説明" - -#~ msgid "PLACE" -#~ msgstr "場所" - -#~ msgid "Use Open Event" -#~ msgstr "Open Event を使用する" - -#~ msgid "Footer Menu" -#~ msgstr "フッター メニュー" - -#~ msgid "POSITION" -#~ msgstr "位置" - -#~ msgid "LANGUAGE" -#~ msgstr "言語" - -#~ msgid "Use Open Even" -#~ msgstr "Open Event を使用する" - -#~ msgid "Update Page" -#~ msgstr "ページを更新" - -#~ msgid "Delete Page" -#~ msgstr "ページを削除" - -#~ msgid "Panel Permissions" -#~ msgstr "パネルのアクセス許可" - -#~ msgid "Built-in Role" -#~ msgstr "組み込みロール" - -#~ msgid "Panel" -#~ msgstr "パネル" - -#~ msgid "Update System Role" -#~ msgstr "システム ロールを更新" - -#~ msgid "Close" -#~ msgstr "閉じる" - -#~ msgid "Add new System Role" -#~ msgstr "新しいシステム ロールを追加" - -#~ msgid "Create Role" -#~ msgstr "ロールを作成" - -#~ msgid "Account creation is necessary" -#~ msgstr "アカウントの作成が必要です" - -#~ msgid "EVENT ROLE" -#~ msgstr "イベント ロール" - -#~ msgid "SERVICE" -#~ msgstr "サービス" - -#~ msgid "Server logs display is supported only on Kubernetes and Heroku deployments" -#~ msgstr "サーバー ログの表示は Kubernetes と Heroku デプロイメントでのみサポートされます" - -#~ msgid "Server Logs" -#~ msgstr "サーバー ログ" - -#~ msgid "discounted" -#~ msgstr "割引" - -#~ msgid "Discount amount" -#~ msgstr "割引額" - -#~ msgid "Percent" -#~ msgstr "パーセント" - -#~ msgid "Number of redemptions allowed" -#~ msgstr "許可される払い戻しの数" - -#~ msgid "Not Active" -#~ msgstr "有効ではありません" - -#~ msgid "Discount duration" -#~ msgstr "割引期間" - -#~ msgid "Months" -#~ msgstr "ヶ月" - -#~ msgid "Attached to Marketer" -#~ msgstr "マーケティング担当者に添付" - -#~ msgid "Select Marketer" -#~ msgstr "マーケティング担当者を選択" - -#~ msgid "Save Discount" -#~ msgstr "割引を保存" - -#~ msgid "Sent to" -#~ msgstr "送信先" - -#~ msgid "Overdue" -#~ msgstr "期限切れ" - -#~ msgid "Showing all records" -#~ msgstr "すべてのレコードを表示" - -#~ msgid "-" -#~ msgstr "-" - -#~ msgid "Restore Session" -#~ msgstr "セッションを復元" - -#~ msgid "All Sessions" -#~ msgstr "すべてのセッション" - -#~ msgid "All Pending" -#~ msgstr "すべての保留中" - -#~ msgid "All Accepted" -#~ msgstr "すべての受付済" - -#~ msgid "All Rejected" -#~ msgstr "すべての拒否" - -#~ msgid "All Deleted Sessions" -#~ msgstr "すべての削除されたセッション" - -#~ msgid "Date of Event" -#~ msgstr "イベントの日付" - -#~ msgid "Google Analytics Tracking ID" -#~ msgstr "Google アナリティクス トラッキング ID" - -#~ msgid "on how to get this Tracking ID" -#~ msgstr "このトラッキング ID を取得する方法について" - -#~ msgid "Width" -#~ msgstr "幅" - -#~ msgid "Height" -#~ msgstr "高さ" - -#~ msgid "Quality" -#~ msgstr "品質" - -#~ msgid "Standard Size of the available area is" -#~ msgstr "利用可能な領域の標準サイズは" - -#~ msgid "Found in" -#~ msgstr "見つかりました" - -#~ msgid "Logo Size" -#~ msgstr "ロゴのサイズ" - -#~ msgid "Event Wizard" -#~ msgstr "イベント ウィザード" - -#~ msgid "Width & Height" -#~ msgstr "幅 & 高さ" - -#~ msgid "Android" -#~ msgstr "Android" - -#~ msgid "Web" -#~ msgstr "Web" - -#~ msgid "on how to obtain these keys" -#~ msgstr "これらのキーを入手する方法について" - -#~ msgid "Client" -#~ msgstr "クライアント" - -#~ msgid "Credentials" -#~ msgstr "資格情報" - -#~ msgid "on how to obtain these credentials" -#~ msgstr "これらの資格情報を取得する方法について" - -#~ msgid "Integration" -#~ msgstr "統合" - -#~ msgid " Mod" -#~ msgstr " モード" - -#~ msgid "e" -#~ msgstr " " - -#~ msgid "Sandbox" -#~ msgstr "サンドボックス" - -#~ msgid "mode" -#~ msgstr "モード" - -#~ msgid "Used during development and testing" -#~ msgstr "開発およびテスト中に使用します" - -#~ msgid "Where is the application running" -#~ msgstr "アプリケーションを実行している場所" - -#~ msgid "on how to obtain these tokens" -#~ msgstr "これらのトークンを取得する方法について" - -#~ msgid "Consumer key" -#~ msgstr "コンシューマー キー" - -#~ msgid "" -#~ "on how to obtain these\n" -#~ " tokens" -#~ msgstr "これらのトークンを取得する方法について" - -#~ msgid "Where to store data" -#~ msgstr "データを格納する場所" - -#~ msgid "on how to get this token" -#~ msgstr "このトークンを取得する方法について" - -#~ msgid "List of Supported Currencies" -#~ msgstr "サポートされている通貨の一覧" - -#~ msgid "System Tokens" -#~ msgstr "システム トークン" - -#~ msgid "ayment Gateways" -#~ msgstr "支払ゲートウェイ" - -#~ msgid "Registered User" -#~ msgstr "登録ユーザー" - -#~ msgid "Restore User" -#~ msgstr "ユーザーを復元" - -#~ msgid "Provide Admin access" -#~ msgstr "管理者アクセスを提供" - -#~ msgid "Custom System Roles" -#~ msgstr "カスタム システム ロール" - -#~ msgid "Heroku Info" -#~ msgstr "Heroku 情報" - -#~ msgid "Heroku Version" -#~ msgstr "Heroku バージョン" - -#~ msgid "Revision" -#~ msgstr "リビジョン" - -#~ msgid "Author Name" -#~ msgstr "作者名" - -#~ msgid "Commit Message" -#~ msgstr "コミット メッセージ" - -#~ msgid "Kubernetes Deployment Info" -#~ msgstr "Kubernetes デプロイメント情報" - -#~ msgid "Repository" -#~ msgstr "リポジトリ" - -#~ msgid "Branch" -#~ msgstr "ブランチ" - -#~ msgid "Commit Hash" -#~ msgstr "コミット ハッシュ" - -#~ msgid "Since installation" -#~ msgstr "インストール以降" - -#~ msgid "Super Admins" -#~ msgstr "スーパー管理者" - -#~ msgid "of Admins" -#~ msgstr "管理者の" - -#~ msgid "Registered Users" -#~ msgstr "登録ユーザー" - -#~ msgid "Unverified Users" -#~ msgstr "未確認ユーザー" - -#~ msgid "Total Users" -#~ msgstr "ユーザーの合計" - -#~ msgid "Organizers" -#~ msgstr "主催者" - -#~ msgid "Co-Organizers" -#~ msgstr "共同主催者" - -#~ msgid "Track Organizers" -#~ msgstr "トラック主催者" - -#~ msgid "Previous Imports" -#~ msgstr "以前のインポート" - -#~ msgid "Are you sure you would like to delete this event" -#~ msgstr "このイベントを削除してもよろしいですか" - -#~ msgid "Confirm Delete" -#~ msgstr "削除の確認" - -#~ msgid "Co-organizer" -#~ msgstr "共同主催者" - -#~ msgid "Update Role" -#~ msgstr "ロールを更新" - -#~ msgid "Manage Roles" -#~ msgstr "ロールの管理" - -#~ msgid "User (Email)" -#~ msgstr "ユーザー (メールアドレス)" - -#~ msgid "accepted" -#~ msgstr "受付" - -#~ msgid "invited" -#~ msgstr "招待" - -#~ msgid "Invitation Link" -#~ msgstr "招待状のリンク" - -#~ msgid "User email" -#~ msgstr "ユーザーのメール" - -#~ msgid "Choose" -#~ msgstr "選択" - -#~ msgid "Event Sponsors" -#~ msgstr "イベントのスポンサー" - -#~ msgid "Add Sponsor" -#~ msgstr "スポンサーを追加" - -#~ msgid "Export and Download Event as zip" -#~ msgstr "イベントを ZIP としてエクスポートおよびダウンロード" - -#~ msgid "Select which media files you want in the zip" -#~ msgstr "ZIP にするメディア ファイルを選択" - -#~ msgid "Started by" -#~ msgstr "開始" - -#~ msgid "datetime" -#~ msgstr "日時" - -#~ msgid "You can make a" -#~ msgstr "できることは" - -#~ msgid "request to the following endpoint to access the selected information" -#~ msgstr "次のエンドポイントにリクエストして、選択した情報にアクセス" - -#~ msgid "In order to use this feature activate" -#~ msgstr "この機能を有効に使用するため" - -#~ msgid "Sessions and Speakers" -#~ msgstr "セッションとスピーカー" - -#~ msgid "for the event" -#~ msgstr "イベントの" - -#~ msgid "Please" -#~ msgstr "どうぞ" - -#~ msgid "General Info" -#~ msgstr "全般の情報" - -#~ msgid "Event ID" -#~ msgstr "イベント ID" - -#~ msgid "Event Url" -#~ msgstr "イベント URL" - -#~ msgid "Event Start Time" -#~ msgstr "イベントの開始時刻" - -#~ msgid "Event End Time" -#~ msgstr "イベントの終了時刻" - -#~ msgid "Event Session Types" -#~ msgstr "イベント セッションの種類" - -#~ msgid "Event Links and Social media" -#~ msgstr "イベントのリンクとソーシャル メディア" - -#~ msgid "'Do you want to edit this record?'" -#~ msgstr "「このレコードを編集しますか?」" - -#~ msgid "Permissions List" -#~ msgstr "アクセス許可の一覧" - -#~ msgid "Co-Organizer" -#~ msgstr "共同主催者" - -#~ msgid "Error loading sessions" -#~ msgstr "セッションの読み込みエラー" - -#~ msgid "No Unscheduled sessions" -#~ msgstr "スケジュールされていないセッションはありません" - -#~ msgid "Schedule last published on" -#~ msgstr "スケジュールの最終公開" - -#~ msgid "Clear Overlaps" -#~ msgstr "重複をクリア" - -#~ msgid "Add New Microlocation" -#~ msgstr "新しいマイクロロケーションを追加" - -#~ msgid "Export as" -#~ msgstr "エクスポート..." - -#~ msgid "Long Abstract" -#~ msgstr "長い要約" - -#~ msgid "Update Session" -#~ msgstr "セッションを更新" - -#~ msgid "New Microlocation" -#~ msgstr "新しいマイクロロケーション" - -#~ msgid "Room Name" -#~ msgstr "ルーム名" - -#~ msgid "Floor" -#~ msgstr "フロア" - -#~ msgid "Latitude" -#~ msgstr "緯度" - -#~ msgid "Longitude" -#~ msgstr "経度" - -#~ msgid "Add Microlocation" -#~ msgstr "マイクロロケーションを追加" - -#~ msgid "Send email" -#~ msgstr "メールを送信" - -#~ msgid "Media" -#~ msgstr "メディア" - -#~ msgid "Slide" -#~ msgstr "スライド" - -#~ msgid "Session Invitation" -#~ msgstr "セッションへの招待" - -#~ msgid "Invitation Pag" -#~ msgstr "招待ページ" - -#~ msgid "You have been invited for session" -#~ msgstr "セッションに招待されました" - -#~ msgid "Accept" -#~ msgstr "承諾" - -#~ msgid "Reject" -#~ msgstr "謝絶" - -#~ msgid "Select Avatar" -#~ msgstr "アバターを選択" - -#~ msgid "Avatar size must be less than 1MB." -#~ msgstr "アバターのサイズは、1 MB 未満にする必要があります。" - -#~ msgid "Crop your image" -#~ msgstr "画像をトリミング" - -#~ msgid "Done" -#~ msgstr "完了" - -#~ msgid "Modify Speakers" -#~ msgstr "スピーカーを変更" - -#~ msgid "selected" -#~ msgstr "選択済" - -#~ msgid "Submit Session" -#~ msgstr "セッションを提出" - -#~ msgid "Invite Speakers" -#~ msgstr "スピーカーを招待" - -#~ msgid "Save as Draft" -#~ msgstr "下書きとして保存" - -#~ msgid "Featured Speaker" -#~ msgstr "注目のスピーカー" - -#~ msgid "checked" -#~ msgstr "チェック済" - -#~ msgid "Save Speaker" -#~ msgstr "スピーカーを保存" - -#~ msgid "Create an Access Code" -#~ msgstr "アクセス コードを作成" - -#~ msgid "Number of access tickets" -#~ msgstr "アクセス チケットの数" - -#~ msgid "Select Ticket(s) applied to the access code" -#~ msgstr "アクセス コードに適用されるチケットを選択" - -#~ msgid "Select all Tickets Type" -#~ msgstr "すべてのチケットの種類を選択" - -#~ msgid "Show other options" -#~ msgstr "その他のオプションを表示" - -#~ msgid "Set the min. and max. quantity allowed to purchase per order (optional)" -#~ msgstr "最小と最大を設定します。注文ごとに購入できる数量 (省略可)" - -#~ msgid "Validity period (optional)" -#~ msgstr "有効期限 (省略可)" - -#~ msgid "Save Access" -#~ msgstr "アクセスを保存" - -#~ msgid "Payment Type" -#~ msgstr "支払い方法" - -#~ msgid "Select payment type" -#~ msgstr "支払い方法を選択" - -#~ msgid "Telegraphic Transfer (TT) / Bank Transfer" -#~ msgstr "電信送金 (TT) / 銀行振込" - -#~ msgid "Onsite / Cash" -#~ msgstr "オンサイト / 現金" - -#~ msgid "Filter by Ticket" -#~ msgstr "チケットでフィルター" - -#~ msgid "Remove All Filters" -#~ msgstr "すべてのフィルターを削除" - -#~ msgid "Discount Code URL" -#~ msgstr "割引コード URL" - -#~ msgid "Number of discount tickets" -#~ msgstr "割引チケットの数" - -#~ msgid "Qty" -#~ msgstr "数量" - -#~ msgid "Buyer / Registration Contact" -#~ msgstr "購入者 / 登録お問い合わせ" - -#~ msgid "Are you sure you want to cancel the ticket" -#~ msgstr "チケットをキャンセルしてもよろしいですか" - -#~ msgid "Enter a note to ticket buyer(optional): " -#~ msgstr "チケット購入者への注意を入力してください (オプション): " - -#~ msgid "Cancel Ticket" -#~ msgstr "チケットをキャンセル" - -#~ msgid "Are you sure you want to delete the ticket" -#~ msgstr "チケットを削除してもよろしいですか" - -#~ msgid "Delete Ticket" -#~ msgstr "チケットを削除" - -#~ msgid "Resend Order Confirmation" -#~ msgstr "注文の確認を再送信" - -#~ msgid "Send confirmation email to:" -#~ msgstr "確認のメールを送信します:" - -#~ msgid "Resend" -#~ msgstr "再送信" - -#~ msgid "Orders Summary" -#~ msgstr "注文概要" - -#~ msgid "by order status" -#~ msgstr "注文ステータス別" - -#~ msgid "Enter Address" -#~ msgstr "住所を入力してください" - -#~ msgid "Reset Location" -#~ msgstr "場所をリセット" - -#~ msgid "Organizer Information" -#~ msgstr "主催者情報" - -#~ msgid "Organizer name" -#~ msgstr "主催者名" - -#~ msgid "Use Ticketing System" -#~ msgstr "チケット システムを使用する" - -#~ msgid "Ticket Details" -#~ msgstr "チケットの詳細" - -#~ msgid "Donation" -#~ msgstr "寄付" - -#~ msgid "Add Ticket URL" -#~ msgstr "チケットの URL を追加" - -#~ msgid "Enter Discount Code" -#~ msgstr "割引コードを入力してください" - -#~ msgid "Apply Discount" -#~ msgstr "割引を適用" - -#~ msgid "Code applied !" -#~ msgstr "コードを適用しました !" - -#~ msgid "Add Payment details" -#~ msgstr "支払いの詳細を追加" - -#~ msgid "Choose Country" -#~ msgstr "国を選択" - -#~ msgid "Choose a country for your payment" -#~ msgstr "支払いの国を選択してください" - -#~ msgid "Choose Currency" -#~ msgstr "通貨を選択" - -#~ msgid "Please select a currency" -#~ msgstr "通貨を選択してください" - -#~ msgid "Choose Payment Methods" -#~ msgstr "支払い方法を選択" - -#~ msgid "Online Payments" -#~ msgstr "オンラインでの支払い" - -#~ msgid "YES, accept payment through PayPal " -#~ msgstr "はい、PayPal を通じて支払いを受け付けます " - -#~ msgid "Paypal accepts credit card, debit card and PayPal payments. To learn how it works click" -#~ msgstr "Paypal は、クレジットカード、デビットカード、PayPal 支払いを受け付けます。仕組みを学ぶにはクリック" - -#~ msgid "here." -#~ msgstr "ここ。" - -#~ msgid "Don't have a PayPal account?" -#~ msgstr "PayPal アカウントをお持ちではありませんか?" - -#~ msgid "Create a free PayPal merchant account." -#~ msgstr "無料の PayPal のマーチャント アカウントを作成します。" - -#~ msgid "Stripe accepts Visa, Master and Amex. To learn how it works click" -#~ msgstr "Stripe は、Visa、マスター、アメックスを受け付けます。仕組みを学ぶにはクリック" - -#~ msgid "Find out more about Stripe" -#~ msgstr "Stripe についてもっとを知る" - -#~ msgid "Use Stripe for payments" -#~ msgstr "Stripe を使用して支払い" - -#~ msgid "The stripe account" -#~ msgstr "Stripe アカウント" - -#~ msgid "has been connected." -#~ msgstr "接続されています。" - -#~ msgid "Click to De-link the account." -#~ msgstr "クリックするとアカウントのリンクを解除します。" - -#~ msgid "Enter your PayPal account name and payment details instructions to ticket buyers" -#~ msgstr "チケット購入者に対するあなたの PayPal アカウント名と支払いの詳細指示を入力してください" - -#~ msgid "example" -#~ msgstr "例" - -#~ msgid "Enter your bank details and instructions to ticket buyers" -#~ msgstr "チケット購入者に対するあなたの銀行口座情報と指示を入力してください" - -#~ msgid "See an" -#~ msgstr "ご覧ください" - -#~ msgid "YES, accept payment at the event(on site)" -#~ msgstr "はい、イベント (現地) での支払いを受け付けます" - -#~ msgid "Enter payment instructions to ticket buyers to make payments onsite" -#~ msgstr "チケット購入者に対する現地での支払い方法を入力してください" - -#~ msgid "Add Tax" -#~ msgstr "税を追加" - -#~ msgid "Additional Details" -#~ msgstr "その他の詳細" - -#~ msgid "list this event on Open Event and search engines" -#~ msgstr "Open Event と検索エンジンでこのイベントを一覧します" - -#~ msgid "Private page" -#~ msgstr "プライベート ページ" - -#~ msgid "Event Sub-Topic" -#~ msgstr "イベントのサブ トピック" - -#~ msgid "Choose a topic first" -#~ msgstr "最初にトピックを選択します" - -#~ msgid "License of Event Data and Content" -#~ msgstr "イベント データとコンテンツのライセンス" - -#~ msgid "Choose Licence" -#~ msgstr "ライセンスを選択" - -#~ msgid "Tax Options" -#~ msgstr "税のオプション" - -#~ msgid "Do you need to charge tax for this event ?" -#~ msgstr "このイベントに課税が必要ですか?" - -#~ msgid "Choose a country for your tax payment" -#~ msgstr "税金の支払い国を選択してください" - -#~ msgid "Tax Name" -#~ msgstr "税の名称" - -#~ msgid "Tax Rate" -#~ msgstr "税率" - -#~ msgid "Tax Invoices are sent to your attendees when you select this feature." -#~ msgstr "この機能を選択すると、税務インボイスが参加者に送信されます。" - -#~ msgid "Enter your registered business company name and address to be included on the tax invoice" -#~ msgstr "税務インボイスに含まれる登記された会社名と住所を入力してください" - -#~ msgid "Optional Text for Invoice Footer" -#~ msgstr "インボイスのフッターに記載するオプションのテキスト" - -#~ msgid "Add or Include" -#~ msgstr "追加または含める" - -#~ msgid "Turn" -#~ msgstr "回転" - -#~ msgid "off" -#~ msgstr "オフ" - -#~ msgid "sponsors" -#~ msgstr "スポンサー" - -#~ msgid "Add Another Sponsor" -#~ msgstr "別のスポンサーを追加" - -#~ msgid "Save and Proceed" -#~ msgstr "保存して続行" - -#~ msgid "Unpublish event" -#~ msgstr "イベントを非公開" - -#~ msgid "Make your event live" -#~ msgstr "イベントを活動中にする" - -#~ msgid "is uploading" -#~ msgstr "はアップロード中" - -#~ msgid "No larger than " -#~ msgstr "以下 " - -#~ msgid "Ticket visibility" -#~ msgstr "チケットの表示" - -#~ msgid "Hide Ticket" -#~ msgstr "チケットを非表示にする" - -#~ msgid "Hides ticket from the Public Events page." -#~ msgstr "公開のイベント ページからチケットを非表示にします。" - -#~ msgid "If unchecked fees will be passed on" -#~ msgstr "未確認の料金が渡される場合" - -#~ msgid "Fee: " -#~ msgstr "料金: " - -#~ msgid "| Buyer Total:" -#~ msgstr "| 購入者の合計:" - -#~ msgid "Sales Start" -#~ msgstr "販売開始" - -#~ msgid "Sales End" -#~ msgstr "販売終了" - -#~ msgid "Private link" -#~ msgstr "プライベート リンク" - -#~ msgid "Share this link to get private submission independently of open/closed Call for Speakers at any time." -#~ msgstr "このリンクを共有して、スピーカーの呼び出しのオープン/クローズとは関係なくいつでもプライベートな提出を取得します。" - -#~ msgid "the link will be active once the event is saved" -#~ msgstr "イベントを保存すると、リンクが有効になります" - -#~ msgid "Collect" -#~ msgstr "収集" - -#~ msgid "Customize Registration Form" -#~ msgstr "登録フォームをカスタマイズ" - -#~ msgid "Session, Microlocations, Session types" -#~ msgstr "セッション、マイクロロケーション、セッションの種類" - -#~ msgid "Create Password" -#~ msgstr "パスワードを作成" - -#~ msgid "Email Confirmation" -#~ msgstr "メールの確認" - -#~ msgid "We have sent you an email confirmation on the email you have given. Please follow the link in the email to create your account." -#~ msgstr "指定されたメールアドレスに確認のメールを送信しました。メール内のリンクに従って、アカウントを作成してください。" - -#~ msgid "Login Form" -#~ msgstr "ログイン フォーム" - -#~ msgid "Lost your password" -#~ msgstr "パスワードを忘れました" - -#~ msgid "New to site" -#~ msgstr "新規訪問" - -#~ msgid "Create Account" -#~ msgstr "アカウントを作成" - -#~ msgid "Registration Form" -#~ msgstr "登録フォーム" - -#~ msgid "Already a member" -#~ msgstr "既に会員です" - -#~ msgid "Log in" -#~ msgstr "ログイン" - -#~ msgid "Under Review" -#~ msgstr "審査中" - -#~ msgid "Edit Proposal" -#~ msgstr "申し込みを編集" - -#~ msgid "Session Type" -#~ msgstr "セッションの種類" - -#~ msgid "No session proposals for upcoming events found" -#~ msgstr "予定されているイベントの、セッションの申し込みが見つかりませんでした" - -#~ msgid "No session proposals for past events found" -#~ msgstr "過去のイベントの、セッションの申し込みが見つかりませんでした" - -#~ msgid "No tickets for upcoming events found" -#~ msgstr "予定されているイベントの、チケットは見つかりませんでした" - -#~ msgid "No tickets for past events found" -#~ msgstr "過去のイベントの、チケットは見つかりませんでした" - -#~ msgid "Details about User" -#~ msgstr "ユーザーに関する詳細情報" - -#~ msgid "Avatar size must be less than 1MB" -#~ msgstr "アバターのサイズは 1 MB 未満にする必要があります" - -#~ msgid "Adjust" -#~ msgstr "調整" - -#~ msgid "Received At" -#~ msgstr "受信" - -#~ msgid "Received At (Humanized)" -#~ msgstr "受信 (人)" - -#~ msgid "Mark" -#~ msgstr "マーク" - -#~ msgid "as Read" -#~ msgstr "既読" - -#~ msgid "Contact Info - Settings" -#~ msgstr "連絡先情報 - 設定" - -#~ msgid "Connected" -#~ msgstr "接続しました" - -#~ msgid "Email Preferences - Settings" -#~ msgstr "メールの設定 - 設定" - -#~ msgid "Speaker Notifications" -#~ msgstr "スピーカー通知" - -#~ msgid "Organizer Notifications" -#~ msgstr "主催者通知" - -#~ msgid "Email Updates" -#~ msgstr "メールの更新" - -#~ msgid "Password - Settings" -#~ msgstr "パスワード - 設定" - -#~ msgid "Logged in as" -#~ msgstr "ログイン" diff --git a/translations/ko.po b/translations/ko.po index 4ca85aa9662..e3ccc8542b3 100644 --- a/translations/ko.po +++ b/translations/ko.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,48 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Message" -#~ msgstr "메시지" - -#~ msgid "Started" -#~ msgstr "시작됨" - -#~ msgid "Locations" -#~ msgstr "장소" - -#~ msgid "Support" -#~ msgstr "지원" - -#~ msgid "Github" -#~ msgstr "깃허브" - -#~ msgid "Youtube" -#~ msgstr "유투브" - -#~ msgid "Roles" -#~ msgstr "역할" - -#~ msgid "Actor" -#~ msgstr "배우" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/messages.pot b/translations/messages.pot index e0d4b65d6d8..4131e7691de 100644 --- a/translations/messages.pot +++ b/translations/messages.pot @@ -27,11 +27,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -49,10 +59,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -62,7 +81,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -78,6 +99,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -85,7 +107,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -94,19 +122,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -162,13 +177,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -317,15 +325,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -538,13 +537,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -634,13 +626,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -755,6 +740,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" diff --git a/translations/pl.po b/translations/pl.po index 89d4d57c0fb..ad0e217aa7f 100644 --- a/translations/pl.po +++ b/translations/pl.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,24 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/ru.po b/translations/ru.po index 5d11811a9b3..326b9b7554a 100644 --- a/translations/ru.po +++ b/translations/ru.po @@ -28,11 +28,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -50,10 +60,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -63,7 +82,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -79,6 +100,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -86,7 +108,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -95,19 +123,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -163,13 +178,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -318,15 +326,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -539,13 +538,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -635,13 +627,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -756,6 +741,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" diff --git a/translations/th.po b/translations/th.po index 48d7348572f..2b5b8b61730 100644 --- a/translations/th.po +++ b/translations/th.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,24 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/vi.po b/translations/vi.po index f87f3ce1849..d3f600502a9 100644 --- a/translations/vi.po +++ b/translations/vi.po @@ -25,11 +25,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -47,10 +57,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -60,7 +79,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -76,6 +97,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -83,7 +105,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -92,19 +120,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -160,13 +175,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -315,15 +323,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -536,13 +535,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -632,13 +624,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -753,6 +738,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6947,36 +6937,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Message" -#~ msgstr "Tin nhắn" - -#~ msgid "Started" -#~ msgstr "Đã khởi động" - -#~ msgid "Locations" -#~ msgstr "Địa điểm" - -#~ msgid "Support" -#~ msgstr "Hỗ trợ" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/zh.po b/translations/zh.po deleted file mode 100644 index dfd01161f99..00000000000 --- a/translations/zh.po +++ /dev/null @@ -1,6970 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: open-event-frontend\n" -"Report-Msgid-Bugs-To: open-event@googlegroups.com\n" -"POT-Creation-Date: 2019-01-31 16:31+0800\n" -"PO-Revision-Date: 2017-06-29 15:01-0400\n" -"Last-Translator: fossasia \n" -"Language-Team: Chinese Simplified\n" -"Language: zh\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: crowdin.com\n" -"X-Crowdin-Project: open-event-frontend\n" -"X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: /development/translations/en.po\n" - -#: app/components/account/contact-info-section.js:22:23 -#: app/components/forms/login-form.js:25:23 -#: app/components/forms/orders/guest-order-form.js:18:23 -#: app/components/forms/reset-password-form.js:22:23 -#: app/components/forms/user-profile-form.js:37:23 -msgid "Please enter your email ID" -msgstr "" - -#: app/components/account/contact-info-section.js:26:23 -#: app/components/forms/login-form.js:29:23 -#: app/components/forms/orders/guest-order-form.js:22:23 -#: app/components/forms/reset-password-form.js:26:23 -#: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" -msgstr "" - -#: app/components/account/contact-info-section.js:35:23 -#: app/components/forms/user-payment-info-form.js:82:23 -msgid "Please enter a phone number." -msgstr "" - -#: app/components/account/contact-info-section.js:40:23 -#: app/components/forms/user-payment-info-form.js:87:23 -msgid "Please enter a valid phone number." -msgstr "" - -#: app/components/account/danger-zone.js:42:28 -msgid "Your account has been deleted successfully." -msgstr "" - -#: app/components/account/danger-zone.js:48:26 -#: app/components/events/view/publish-bar.ts:89:24 -#: app/components/modals/session-notify-modal.js:69:24 -#: app/components/unverified-user-message.js:37:28 -#: app/controllers/admin/content/events.js:77:26 -#: app/controllers/admin/events/list.js:136:26 -#: app/controllers/admin/events/list.js:161:24 -#: app/controllers/admin/events/list.js:183:24 -#: app/controllers/admin/events/list.js:204:24 -#: app/controllers/admin/sessions/list.js:86:24 -#: app/controllers/admin/users/list.js:106:24 -#: app/controllers/admin/users/list.js:137:24 -#: app/controllers/admin/users/view/events/list.js:82:24 -#: app/controllers/admin/users/view/events/list.js:100:24 -#: app/controllers/events/list.js:81:24 -#: app/controllers/events/view/index.js:56:26 -#: app/controllers/events/view/sessions.js:30:26 -#: app/controllers/events/view/sessions/list.js:121:26 -#: app/controllers/events/view/sessions/list.js:160:24 -#: app/controllers/events/view/sessions/list.js:187:24 -#: app/controllers/events/view/sessions/list.js:209:28 -#: app/controllers/events/view/sessions/list.js:227:28 -#: app/controllers/events/view/sessions/list.js:257:26 -#: app/controllers/events/view/settings.js:23:26 -#: app/controllers/events/view/speakers.js:19:26 -#: app/controllers/events/view/speakers/list.js:82:24 -#: app/controllers/events/view/speakers/list.js:106:24 -#: app/controllers/events/view/tickets/access-codes/list.js:58:26 -#: app/controllers/events/view/tickets/access-codes/list.js:76:26 -#: app/controllers/events/view/tickets/attendees.js:21:26 -#: app/controllers/events/view/tickets/discount-codes/list.js:66:26 -#: app/controllers/events/view/tickets/discount-codes/list.js:85:26 -#: app/controllers/events/view/tickets/orders.js:21:26 -#: app/controllers/events/view/tickets/orders/list.js:71:26 -#: app/controllers/events/view/tickets/orders/list.js:89:26 -#: app/controllers/events/view/tickets/orders/list.js:107:26 -#: app/controllers/events/view/tickets/orders/list.js:132:26 -#: app/controllers/public/session/view.js:29:24 -#: app/templates/components/errors/generic-error.hbs:2:51 -msgid "An unexpected error has occurred." -msgstr "" - -#: app/components/account/email-preferences-section.js:11:28 -msgid "Email notifications updated successfully" -msgstr "" - -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - -#: app/components/account/password-section.js:16:23 -msgid "Please enter the current password" -msgstr "" - -#: app/components/account/password-section.js:25:23 -msgid "Please enter a new password" -msgstr "" - -#: app/components/account/password-section.js:29:23 -#: app/components/forms/register-form.js:34:23 -#: app/components/forms/reset-password-form.js:40:23 -msgid "Your password must have at least {ruleValue} characters" -msgstr "" - -#: app/components/account/password-section.js:38:23 -#: app/components/forms/register-form.js:43:23 -#: app/components/forms/reset-password-form.js:50:23 -msgid "Passwords do not match" -msgstr "" - -#: app/components/events/event-import-section.js:17:23 -#: app/components/forms/admin/content/translation-form.js:17:23 -msgid "Please upload a file" -msgstr "" - -#: app/components/events/event-import-section.js:22:23 -#: app/components/forms/admin/content/translation-form.js:22:23 -msgid "Please upload a file in suggested format" -msgstr "" - -#: app/components/events/view/export/api-response.js:43:26 -msgid "Could not fetch from the server" -msgstr "" - -#: app/components/events/view/export/download-common.js:39:32 -#: app/controllers/events/view/sessions.js:45:34 -#: app/controllers/events/view/speakers.js:30:32 -#: app/controllers/events/view/tickets/attendees.js:32:32 -#: app/controllers/events/view/tickets/orders.js:32:32 -msgid "Download Ready" -msgstr "" - -#: app/components/events/view/export/download-common.js:45:30 -#: app/controllers/events/view/sessions.js:51:32 -#: app/controllers/events/view/speakers.js:33:30 -#: app/controllers/events/view/tickets/attendees.js:35:30 -#: app/controllers/events/view/tickets/orders.js:35:30 -msgid "Task is going on." -msgstr "" - -#: app/components/events/view/export/download-common.js:51:30 -#: app/components/events/view/export/download-common.js:59:28 -msgid "Task failed." -msgstr "" - -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - -#: app/components/events/view/export/download-zip.js:17:26 -msgid "Exported Event Downloaded successfully." -msgstr "" - -#: app/components/events/view/overview/manage-roles.js:40:47 -msgid "Role Invite sent successfully" -msgstr "" - -#: app/components/events/view/overview/manage-roles.js:40:94 -msgid "Role Invite updated successfully" -msgstr "" - -#: app/components/events/view/overview/manage-roles.js:46:26 -#: app/components/events/view/overview/manage-roles.js:67:26 -#: app/components/forms/admin/settings/ticket-fees-form.js:70:26 -#: app/components/widgets/forms/file-upload.js:36:26 -#: app/controllers/events/view/sessions/create.js:26:32 -#: app/controllers/events/view/sessions/create.js:36:28 -#: app/controllers/events/view/sessions/create.js:54:28 -#: app/controllers/events/view/sessions/edit.js:26:32 -#: app/controllers/events/view/sessions/edit.js:36:28 -#: app/controllers/events/view/sessions/edit.js:55:28 -#: app/controllers/events/view/speakers/create.js:28:24 -#: app/controllers/events/view/speakers/edit.js:18:26 -#: app/controllers/events/view/tickets/add-order.js:92:28 -#: app/controllers/events/view/tickets/add-order.js:98:24 -#: app/controllers/orders/new.js:47:39 app/controllers/orders/new.js:58:24 -#: app/controllers/public/cfs/edit-session.js:20:26 -#: app/controllers/public/cfs/edit-speaker.js:20:26 -#: app/controllers/public/cfs/new-session.js:20:24 -#: app/controllers/public/cfs/new-speaker.js:20:26 -msgid "Oops something went wrong. Please try again" -msgstr "" - -#: app/components/events/view/overview/manage-roles.js:60:28 -msgid "Role Invite deleted successfully" -msgstr "" - -#: app/components/events/view/publish-bar.hbs:8:6 -#: app/templates/components/ui-table/cell/admin/users/cell-actions.hbs:2:89 -#: app/templates/components/ui-table/cell/admin/users/cell-first-name.hbs:4:109 -#: app/templates/components/ui-table/cell/cell-buttons.hbs:3:22 -#: app/templates/components/ui-table/cell/cell-event-general.hbs:16:22 -#: app/templates/components/ui-table/cell/cell-event.hbs:7:22 -#: app/templates/components/ui-table/cell/events/view/speakers/cell-buttons.hbs:5:22 -msgid "View" -msgstr "" - -#: app/components/events/view/publish-bar.hbs:10:6 -msgid "Preview" -msgstr "" - -#: app/components/events/view/publish-bar.hbs:19:6 -msgid "Unpublish" -msgstr "" - -#: app/components/events/view/publish-bar.hbs:22:6 -msgid "Publish" -msgstr "" - -#: app/components/events/view/publish-bar.ts:57:26 -msgid "Your event must have tickets before it can be published." -msgstr "" - -#: app/components/events/view/publish-bar.ts:63:26 -msgid "You need to connect to your Stripe account, if you choose Stripe as a payment gateway." -msgstr "" - -#: app/components/events/view/publish-bar.ts:76:28 -msgid "Your event has been published successfully." -msgstr "" - -#: app/components/events/view/publish-bar.ts:81:28 -msgid "Your event has been unpublished." -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:17:23 -#: app/components/forms/session-speaker-form.js:185:23 -msgid "Please enter a name" -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:26:23 -#: app/components/forms/session-speaker-form.js:29:23 -msgid "Please enter a title" -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:35:23 -msgid "Please enter the path" -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:40:23 -msgid "Path should not contain leading slash." -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:44:23 -msgid "Path should not contain whitespaces." -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:53:23 -msgid "Please select a place" -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:62:23 -#: app/components/forms/session-speaker-form.js:255:23 -msgid "Please enter a position" -msgstr "" - -#: app/components/forms/admin/content/pages-form.js:71:23 -#: app/components/forms/session-speaker-form.js:101:23 -msgid "Please enter a language" -msgstr "" - -#: app/components/forms/admin/content/social-links-form.js:20:23 -#: app/components/forms/orders/order-form.js:238:19 -#: app/components/forms/orders/order-form.js:252:19 -#: app/components/forms/orders/order-form.js:263:19 -#: app/components/forms/orders/order-form.js:277:19 -#: app/components/forms/session-speaker-form.js:115:23 -#: app/components/forms/session-speaker-form.js:126:23 -#: app/components/forms/session-speaker-form.js:140:23 -#: app/components/forms/session-speaker-form.js:151:23 -#: app/components/forms/session-speaker-form.js:165:23 -#: app/components/forms/session-speaker-form.js:176:23 -#: app/components/forms/session-speaker-form.js:226:23 -#: app/components/forms/session-speaker-form.js:237:23 -#: app/components/forms/session-speaker-form.js:366:23 -#: app/components/forms/session-speaker-form.js:377:23 -#: app/components/forms/wizard/basic-details-step.js:382:23 -#: app/components/forms/wizard/basic-details-step.js:402:23 -#: app/components/forms/wizard/basic-details-step.js:413:23 -#: app/components/forms/wizard/other-details-step.js:99:23 -msgid "Please enter a valid url" -msgstr "" - -#: app/components/forms/admin/content/translation-form.js:31:23 -msgid "Please select a language" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:22:23 -#: app/components/forms/session-speaker-form.js:338:23 -#: app/components/forms/session-speaker-form.js:352:23 -msgid "Please enter a valid mobile number." -msgstr "" - -#: app/components/forms/admin/settings/billing.js:31:23 -msgid "Please enter the email" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:44:23 -msgid "Please enter the billing paypal email invoice money will be transferred to" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:57:23 -msgid "Please select the country" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:66:23 -msgid "Please enter the company" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:75:23 -msgid "Please enter the Address" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:84:23 -msgid "Please enter the city" -msgstr "" - -#: app/components/forms/admin/settings/billing.js:94:23 -#: app/components/forms/user-payment-info-form.js:73:23 -msgid "Please enter the zip code" -msgstr "" - -#: app/components/forms/admin/settings/images-form.js:17:23 -#: app/components/forms/admin/settings/images-form.js:44:23 -#: app/components/forms/admin/settings/images-form.js:71:23 -#: app/components/forms/admin/settings/images-form.js:98:23 -msgid "Please enter width" -msgstr "" - -#: app/components/forms/admin/settings/images-form.js:26:23 -#: app/components/forms/admin/settings/images-form.js:53:23 -#: app/components/forms/admin/settings/images-form.js:80:23 -#: app/components/forms/admin/settings/images-form.js:107:23 -msgid "Please enter height" -msgstr "" - -#: app/components/forms/admin/settings/images-form.js:35:23 -#: app/components/forms/admin/settings/images-form.js:62:23 -#: app/components/forms/admin/settings/images-form.js:89:23 -#: app/components/forms/admin/settings/images-form.js:125:23 -#: app/components/forms/admin/settings/images-form.js:143:23 -#: app/components/forms/admin/settings/images-form.js:161:23 -msgid "Please enter quality" -msgstr "" - -#: app/components/forms/admin/settings/images-form.js:116:23 -#: app/components/forms/admin/settings/images-form.js:134:23 -#: app/components/forms/admin/settings/images-form.js:152:23 -msgid "Please enter size" -msgstr "" - -#: app/components/forms/admin/settings/microservices-form.js:19:23 -msgid "Please enter a valid URL for Android app" -msgstr "" - -#: app/components/forms/admin/settings/microservices-form.js:31:23 -msgid "Please enter a valid URL for web app" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:18:23 -msgid "Please enter the client ID" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:28:23 -#: app/components/forms/admin/settings/payment-gateway-form.js:66:23 -msgid "Please enter the secret key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:38:23 -#: app/components/forms/admin/settings/payment-gateway-form.js:76:23 -msgid "Please enter the publishable key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:47:23 -#: app/components/forms/admin/settings/payment-gateway-form.js:136:23 -#: app/components/forms/admin/settings/payment-gateway-form.js:196:23 -msgid "Please enter the secret test key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:57:23 -msgid "Please enter the publishable test key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:86:23 -msgid "Please enter the sandbox client id" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:96:23 -msgid "Please enter the sandbox secret token" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:106:23 -msgid "Please enter the live client token" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:116:23 -msgid "Please enter the live secret token" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:126:23 -msgid "Please enter the public test key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:146:23 -msgid "Please enter the public live key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:156:23 -#: app/components/forms/admin/settings/payment-gateway-form.js:176:23 -msgid "Please enter the secret live key" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:166:23 -msgid "Please enter the live merchant ID" -msgstr "" - -#: app/components/forms/admin/settings/payment-gateway-form.js:186:23 -msgid "Please enter the test merchant ID" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:17:23 -msgid "Please enter the App name" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:27:23 -msgid "Please enter a tag line" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:37:23 -msgid "Please enter the API Url" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:42:23 -msgid "Please enter a valid URL for the API" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:52:23 -#: app/components/forms/admin/settings/system-form.js:92:23 -msgid "Please enter the Bucket name" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:62:23 -msgid "Please enter the access key" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:72:23 -msgid "Please enter the access secret" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:82:23 -msgid "Please select a region" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:102:23 -msgid "Please enter the key" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:112:23 -msgid "Please enter the secret" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:122:23 -msgid "Please enter the reCAPTCHA site key" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:132:23 -msgid "Please enter a Expiry Time for Order" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:141:23 -msgid "Please enter the reCAPTCHA secret key" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:151:23 -msgid "Please enter the from email" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:165:23 -msgid "Please enter name for from email" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:175:23 -msgid "Please enter the Frontend Url" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:180:23 -msgid "Please enter a valid URL for Frontend" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:190:23 -msgid "Please enter the SMTP host" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:200:23 -msgid "Please enter the SMTP port number" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:204:23 -msgid "Please enter a valid port number" -msgstr "" - -#: app/components/forms/admin/settings/system-form.js:214:23 -msgid "Please enter the token for Sendgrid" -msgstr "" - -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:19:23 -msgid "Please enter the recipient E-mail" -msgstr "" - -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - -#: app/components/forms/admin/settings/ticket-fees-form.js:47:24 -msgid "Existing items need to be completed before new items can be added." -msgstr "" - -#: app/components/forms/admin/settings/ticket-fees-form.js:64:28 -msgid "Fee setting deleted successfully" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:25:23 -msgid "Please enter access code" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:38:23 -msgid "Please enter number of tickets" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:42:23 -msgid "Please enter proper number of tickets" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:52:23 -#: app/components/forms/events/view/create-access-code.js:66:23 -msgid "Please enter the proper number" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:56:23 -#: app/components/forms/events/view/create-discount-code.js:81:23 -msgid "Minimum value should not be greater than maximum" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:70:23 -#: app/components/forms/events/view/create-discount-code.js:95:23 -msgid "Maximum value should not be less than minimum" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:74:23 -#: app/components/forms/events/view/create-discount-code.js:99:23 -msgid "Maximum value should not be greater than number of tickets" -msgstr "" - -#: app/components/forms/events/view/create-access-code.js:84:23 -#: app/components/forms/events/view/create-access-code.js:94:23 -msgid "Please enter the proper date" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:36:23 -msgid "Please enter a discount code" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:49:23 -msgid "Please enter the number of tickets" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:58:23 -msgid "Please enter the discount amount" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:67:23 -msgid "Please enter the discount percentage" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:77:23 -#: app/components/forms/events/view/create-discount-code.js:91:23 -msgid "Please enter a valid integer" -msgstr "" - -#: app/components/forms/events/view/create-discount-code.js:108:23 -msgid "Please select atleast 1 ticket." -msgstr "" - -#: app/components/forms/login-form.js:38:23 -#: app/components/forms/orders/guest-order-form.js:31:23 -msgid "Please enter your password" -msgstr "" - -#: app/components/forms/orders/order-form.js:71:19 -#: app/components/forms/orders/order-form.js:367:23 -msgid "Please enter your first name" -msgstr "" - -#: app/components/forms/orders/order-form.js:79:19 -#: app/components/forms/orders/order-form.js:376:23 -msgid "Please enter your last name" -msgstr "" - -#: app/components/forms/orders/order-form.js:87:19 -msgid "Please enter your email" -msgstr "" - -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - -#: app/components/forms/orders/order-form.js:100:19 -#: app/components/forms/session-speaker-form.js:318:23 -msgid "Please select a gender" -msgstr "" - -#: app/components/forms/orders/order-form.js:109:19 -msgid "Please select your age group" -msgstr "" - -#: app/components/forms/orders/order-form.js:118:19 -#: app/components/forms/orders/order-form.js:412:23 -msgid "Please enter your address" -msgstr "" - -#: app/components/forms/orders/order-form.js:127:19 -#: app/components/forms/orders/order-form.js:421:23 -msgid "Please enter your city" -msgstr "" - -#: app/components/forms/orders/order-form.js:136:19 -msgid "Please enter your state" -msgstr "" - -#: app/components/forms/orders/order-form.js:145:19 -#: app/components/forms/orders/order-form.js:394:23 -#: app/components/forms/wizard/basic-details-step.js:391:23 -#: app/components/modals/tax-info-modal.js:114:23 -msgid "Please select your country" -msgstr "" - -#: app/components/forms/orders/order-form.js:154:19 -msgid "Please enter your job title" -msgstr "" - -#: app/components/forms/orders/order-form.js:163:19 -#: app/components/forms/session-speaker-form.js:347:23 -msgid "Please enter a mobile number" -msgstr "" - -#: app/components/forms/orders/order-form.js:172:19 -msgid "Please enter your tax business info" -msgstr "" - -#: app/components/forms/orders/order-form.js:181:19 -#: app/components/forms/user-payment-info-form.js:55:23 -msgid "Please enter your billing address" -msgstr "" - -#: app/components/forms/orders/order-form.js:190:19 -msgid "Please enter your home address" -msgstr "" - -#: app/components/forms/orders/order-form.js:199:19 -msgid "Please enter your shipping address" -msgstr "" - -#: app/components/forms/orders/order-form.js:209:19 -#: app/components/forms/user-payment-info-form.js:37:23 -msgid "Please enter your company" -msgstr "" - -#: app/components/forms/orders/order-form.js:218:19 -msgid "Please enter your work address" -msgstr "" - -#: app/components/forms/orders/order-form.js:227:19 -msgid "Please enter your work phone" -msgstr "" - -#: app/components/forms/orders/order-form.js:247:19 -#: app/components/forms/orders/order-form.js:272:19 -#: app/components/forms/session-speaker-form.js:361:23 -msgid "Please enter url of website" -msgstr "" - -#: app/components/forms/orders/order-form.js:288:19 -#: app/components/forms/orders/order-form.js:302:19 -msgid "Please enter a valid twitter profile url" -msgstr "" - -#: app/components/forms/orders/order-form.js:297:19 -msgid "Please enter twitter link" -msgstr "" - -#: app/components/forms/orders/order-form.js:313:19 -#: app/components/forms/orders/order-form.js:327:19 -msgid "Please enter a valid facebook account url" -msgstr "" - -#: app/components/forms/orders/order-form.js:322:19 -msgid "Please enter facebook link" -msgstr "" - -#: app/components/forms/orders/order-form.js:338:19 -#: app/components/forms/orders/order-form.js:352:19 -msgid "Please enter a valid GitHub profile url" -msgstr "" - -#: app/components/forms/orders/order-form.js:347:19 -msgid "Please enter GitHub link" -msgstr "" - -#: app/components/forms/orders/order-form.js:403:23 -msgid "Please enter your Tax ID or Business ID" -msgstr "" - -#: app/components/forms/orders/order-form.js:430:23 -msgid "Please enter your zip code" -msgstr "" - -#: app/components/forms/orders/order-form.js:439:23 -msgid "Please specify your choice of payment method" -msgstr "" - -#: app/components/forms/register-form.js:30:23 -msgid "Please enter a password" -msgstr "" - -#: app/components/forms/reset-password-form.js:36:23 -msgid "Please enter your new password" -msgstr "" - -#: app/components/forms/reset-password-form.js:81:34 -msgid "Your password has been reset successfully. Please log in to continue" -msgstr "" - -#: app/components/forms/reset-password-form.js:88:39 -msgid "Password reset link is either invalid or used already" -msgstr "" - -#: app/components/forms/reset-password-form.js:106:34 -msgid "Please go to the link sent to your email to reset your password" -msgstr "" - -#: app/components/forms/reset-password-form.js:114:41 -msgid "No account is registered with this email address." -msgstr "" - -#: app/components/forms/session-speaker-form.js:38:23 -msgid "Please enter a subtitle" -msgstr "" - -#: app/components/forms/session-speaker-form.js:47:23 -msgid "Please enter short abstract" -msgstr "" - -#: app/components/forms/session-speaker-form.js:56:23 -msgid "Please enter a long abstract" -msgstr "" - -#: app/components/forms/session-speaker-form.js:65:23 -msgid "Please enter comments" -msgstr "" - -#: app/components/forms/session-speaker-form.js:74:23 -msgid "Please select a track" -msgstr "" - -#: app/components/forms/session-speaker-form.js:83:23 -msgid "Please select a session type" -msgstr "" - -#: app/components/forms/session-speaker-form.js:92:23 -msgid "Please enter a level" -msgstr "" - -#: app/components/forms/session-speaker-form.js:110:23 -#: app/components/forms/session-speaker-form.js:135:23 -#: app/components/forms/session-speaker-form.js:160:23 -msgid "Please enter a url" -msgstr "" - -#: app/components/forms/session-speaker-form.js:194:23 -#: app/components/forms/session-speaker-form.js:208:23 -msgid "Please enter an email" -msgstr "" - -#: app/components/forms/session-speaker-form.js:221:23 -msgid "Please select an image" -msgstr "" - -#: app/components/forms/session-speaker-form.js:246:23 -msgid "Please enter an organisation" -msgstr "" - -#: app/components/forms/session-speaker-form.js:264:23 -msgid "Please enter a country" -msgstr "" - -#: app/components/forms/session-speaker-form.js:273:23 -msgid "Please enter a city" -msgstr "" - -#: app/components/forms/session-speaker-form.js:282:23 -msgid "Please enter long biography" -msgstr "" - -#: app/components/forms/session-speaker-form.js:291:23 -msgid "Please enter short biography" -msgstr "" - -#: app/components/forms/session-speaker-form.js:300:23 -msgid "Please enter speaking experience" -msgstr "" - -#: app/components/forms/session-speaker-form.js:309:23 -msgid "Please enter select sponsorship" -msgstr "" - -#: app/components/forms/session-speaker-form.js:327:23 -msgid "Please enter where you heard about the event" -msgstr "" - -#: app/components/forms/user-payment-info-form.js:28:23 -#: app/components/forms/user-profile-form.js:19:23 -msgid "Please enter your name" -msgstr "" - -#: app/components/forms/user-payment-info-form.js:46:23 -msgid "Please enter your country" -msgstr "" - -#: app/components/forms/user-payment-info-form.js:64:23 -msgid "Please enter your billing city" -msgstr "" - -#: app/components/forms/user-payment-info-form.js:106:28 -msgid "Your billing details has been updated" -msgstr "" - -#: app/components/forms/user-payment-info-form.js:112:26 -#: app/components/forms/user-profile-form.js:73:30 -#: app/controllers/admin/users/view/account/contact-info.js:15:26 -msgid "An unexpected error occurred" -msgstr "" - -#: app/components/forms/user-profile-form.js:28:23 -msgid "Please enter your family name" -msgstr "" - -#: app/components/forms/user-profile-form.js:52:23 -msgid "Please enter a valid phone number" -msgstr "" - -#: app/components/forms/user-profile-form.js:66:32 -msgid "Your profile has been updated" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:155:23 -msgid "Please give your event a name" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:164:23 -#: app/components/forms/wizard/other-details-step.js:68:23 -msgid "Choose a timezone for your event" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:173:23 -#: app/components/forms/wizard/sessions-speakers-step.js:58:23 -msgid "Please tell us when your event starts" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:177:23 -msgid "Please give a valid start date" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:186:23 -#: app/components/forms/wizard/sessions-speakers-step.js:71:23 -msgid "Please tell us when your event ends" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:190:23 -msgid "Please give a valid end date" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:200:23 -#: app/components/forms/wizard/other-details-step.js:78:23 -#: app/components/forms/wizard/sessions-speakers-step.js:85:23 -msgid "Please give a start time" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:210:23 -#: app/components/forms/wizard/other-details-step.js:88:23 -#: app/components/forms/wizard/sessions-speakers-step.js:95:23 -msgid "Please give an end time" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:219:23 -msgid "Please give your ticket a name" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:229:23 -msgid "Ticket description shouldn't contain more than {ruleValue} characters" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:238:23 -msgid "Please give your ticket a price" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:242:23 -msgid "Please give a proper price for you ticket" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:246:23 -msgid "Ticket price should be greater than 0" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:255:23 -msgid "Please specify how many tickets of this type are available" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:259:23 -msgid "Please give a proper quantity for you ticket" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:268:23 -msgid "Minimum tickets per order required" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:272:23 -#: app/components/forms/wizard/basic-details-step.js:289:23 -msgid "Invalid number" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:276:23 -msgid "Minimum order should not be greater than maximum" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:285:23 -msgid "Maximum tickets per order required" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:293:23 -msgid "Maximum tickets per order should be greater than 0" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:297:23 -msgid "Maximum order should not be less than minimum" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:306:23 -msgid "Minimum price for donation tickets required" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:310:23 -msgid "Minimum price needs to be greater than zero" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:314:23 -msgid "Minimum price should not be greater than maximum" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:323:23 -msgid "Maximum price for donation tickets required" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:327:23 -msgid "Maximum price needs to be greater than zero" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:331:23 -msgid "Maximum price should not be less than minimum" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:344:23 -msgid "Please fill your paypal email for payment of tickets." -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:353:23 -msgid "Please fill the details for payment of tickets." -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:362:23 -msgid "Please fill the bank details for payment of tickets." -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:371:23 -msgid "Please fill the cheque details for payment of tickets." -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:434:51 -msgid "Please try again" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:443:30 -msgid "Stripe disconnected successfully" -msgstr "" - -#: app/components/forms/wizard/basic-details-step.js:512:61 -msgid "This discount code is invalid. Please try again." -msgstr "" - -#: app/components/forms/wizard/custom-form-input.hbs:5:4 -msgid "Add Custom Form Field" -msgstr "" - -#: app/components/forms/wizard/custom-form-input.hbs:20:104 -#: app/components/forms/wizard/wizard-footer.hbs:30:8 -#: app/templates/admin/messages.hbs:5:100 -#: app/templates/admin/permissions/event-roles.hbs:39:78 -#: app/templates/admin/permissions/system-roles.hbs:109:8 -#: app/templates/components/account/contact-info-section.hbs:10:47 -#: app/templates/components/account/password-section.hbs:42:4 -#: app/templates/components/forms/admin/content/social-links-form.hbs:72:47 -#: app/templates/components/forms/admin/settings/analytics-form.hbs:19:4 -#: app/templates/components/forms/admin/settings/billing.hbs:91:61 -#: app/templates/components/forms/admin/settings/images-form.hbs:133:61 -#: app/templates/components/forms/admin/settings/microservices-form.hbs:21:4 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:457:4 -#: app/templates/components/forms/admin/settings/system-form.hbs:75:4 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:161:4 -#: app/templates/components/forms/events/view/create-access-code.hbs:140:68 -#: app/templates/components/forms/events/view/create-discount-code.hbs:178:4 -#: app/templates/components/modals/edit-user-modal.hbs:21:4 -msgid "Save" -msgstr "" - -#: app/components/forms/wizard/custom-form-input.hbs:20:115 -msgid "Add" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:13:10 -#: app/templates/components/events/view/overview/manage-roles.hbs:23:14 -#: app/templates/components/forms/wizard/basic-details-step.hbs:191:23 -msgid "Options" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:17:10 -msgid "Option" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:20:10 -#: app/templates/components/events/view/overview/event-tickets.hbs:26:12 -#: app/templates/components/forms/wizard/sponsors-step.hbs:52:17 -#: app/templates/components/public/ticket-list.hbs:6:12 -msgid "Type" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:23:10 -#: app/components/forms/wizard/custom-forms/table.hbs:58:45 -msgid "Include" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:26:10 -#: app/components/forms/wizard/custom-forms/table.hbs:66:45 -msgid "Require" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:30:12 -#: app/templates/admin/permissions/system-roles.hbs:21:12 -msgid "Actions" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:71:85 -#: app/templates/admin/content/events.hbs:30:35 -#: app/templates/admin/content/events.hbs:78:35 -#: app/templates/admin/content/events.hbs:141:37 -#: app/templates/admin/permissions/system-roles.hbs:55:32 -#: app/templates/components/events/view/overview/manage-roles.hbs:8:37 -#: app/templates/components/events/view/overview/manage-roles.hbs:36:27 -#: app/templates/components/forms/wizard/basic-details-step.hbs:557:16 -#: app/templates/components/ui-table/cell/admin/users/cell-actions.hbs:7:24 -#: app/templates/components/ui-table/cell/admin/users/cell-first-name.hbs:9:24 -#: app/templates/components/ui-table/cell/cell-buttons.hbs:8:22 -#: app/templates/components/ui-table/cell/cell-code-buttons.hbs:2:20 -#: app/templates/components/ui-table/cell/cell-event-general.hbs:21:22 -#: app/templates/components/ui-table/cell/cell-event.hbs:12:22 -#: app/templates/components/ui-table/cell/cell-sponsor-options.hbs:2:20 -#: app/templates/components/ui-table/cell/events/view/speakers/cell-buttons.hbs:10:22 -#: app/templates/components/ui-table/cell/events/view/tickets/access-codes/cell-actions.hbs:2:20 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:2:20 -msgid "Edit" -msgstr "" - -#: app/components/forms/wizard/custom-forms/table.hbs:75:97 -#: app/templates/admin/content/events.hbs:36:35 -#: app/templates/admin/content/events.hbs:84:35 -#: app/templates/admin/content/events.hbs:147:37 -#: app/templates/admin/permissions/event-roles.hbs:30:33 -#: app/templates/admin/permissions/system-roles.hbs:58:32 -#: app/templates/components/events/view/overview/manage-roles.hbs:43:29 -#: app/templates/components/events/view/overview/manage-roles.hbs:50:29 -#: app/templates/components/forms/admin/content/pages-form.hbs:52:144 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:145:19 -#: app/templates/components/modals/confirm-user-delete-modal.hbs:17:4 -#: app/templates/components/ui-table/cell/admin/users/cell-actions.hbs:16:24 -#: app/templates/components/ui-table/cell/admin/users/cell-first-name.hbs:18:24 -#: app/templates/components/ui-table/cell/cell-buttons.hbs:17:22 -#: app/templates/components/ui-table/cell/cell-code-buttons.hbs:8:20 -#: app/templates/components/ui-table/cell/cell-event.hbs:21:22 -#: app/templates/components/ui-table/cell/cell-sponsor-options.hbs:5:20 -#: app/templates/components/ui-table/cell/events/view/speakers/cell-buttons.hbs:14:20 -#: app/templates/components/ui-table/cell/events/view/tickets/access-codes/cell-actions.hbs:16:20 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:16:20 -msgid "Delete" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:31:23 -msgid "Please enter name for session-type" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:40:23 -msgid "Please enter name for track" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:49:23 -msgid "Please enter a Private link" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:62:23 -msgid "CFS start time should be before than event start time" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:75:23 -msgid "CFS end time should be before than event start time" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:104:23 -msgid "Please enter name for microlocation" -msgstr "" - -#: app/components/forms/wizard/sessions-speakers-step.js:113:23 -msgid "Please enter floor for microlocation" -msgstr "" - -#: app/components/forms/wizard/sponsors-step.js:18:23 -msgid "Please give your sponsor a name" -msgstr "" - -#: app/components/forms/wizard/sponsors-step.js:26:23 -msgid "Please upload sponsor's logo." -msgstr "" - -#: app/components/forms/wizard/sponsors-step.js:45:26 -msgid "Please fill the required fields for existing sponsor items" -msgstr "" - -#: app/components/forms/wizard/wizard-footer.hbs:5:8 -#: app/components/modals/session-notify-modal.hbs:47:4 -#: app/templates/components/forms/admin/content/pages-form.hbs:50:55 -#: app/templates/components/modals/add-system-role-modal.hbs:36:4 -#: app/templates/components/modals/add-user-role-modal.hbs:37:4 -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:21:4 -#: app/templates/components/modals/admin/content/new-event-topic-modal.hbs:16:4 -#: app/templates/components/modals/admin/content/new-event-type-modal.hbs:16:4 -#: app/templates/components/modals/change-image-modal.hbs:45:63 -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:22:4 -#: app/templates/components/modals/confirm-user-delete-modal.hbs:14:4 -#: app/templates/components/modals/event-delete-modal.hbs:19:4 -#: app/templates/components/modals/event-transfer-modal.hbs:19:4 -#: app/templates/components/modals/paytm-otp.hbs:15:4 -#: app/templates/components/modals/paytm-payment-options.hbs:27:4 -#: app/templates/components/modals/proposal-withdraw-modal.hbs:16:4 -#: app/templates/components/modals/publish-unpublish-modal.hbs:26:3 -#: app/templates/components/modals/tax-info-modal.hbs:88:4 -#: app/templates/components/modals/user-delete-modal.hbs:19:4 -msgid "Cancel" -msgstr "" - -#: app/components/forms/wizard/wizard-footer.hbs:9:8 -msgid "Discard" -msgstr "" - -#: app/components/forms/wizard/wizard-footer.hbs:14:8 -msgid "Previous" -msgstr "" - -#: app/components/forms/wizard/wizard-footer.hbs:20:8 -msgid "Next" -msgstr "" - -#: app/components/forms/wizard/wizard-footer.hbs:26:8 -msgid "Save as draft" -msgstr "" - -#: app/components/modals/add-system-role-modal.js:42:23 -msgid "Please enter a role name" -msgstr "" - -#: app/components/modals/add-user-role-modal.js:38:23 -msgid "Please enter an email for user" -msgstr "" - -#: app/components/modals/add-user-role-modal.js:42:23 -msgid "Please enter a valid email address for user" -msgstr "" - -#: app/components/modals/add-user-role-modal.js:51:23 -msgid "Please select a role" -msgstr "" - -#: app/components/modals/admin/content/new-event-sub-topic-modal.js:27:23 -msgid "Please enter a sub topic name" -msgstr "" - -#: app/components/modals/admin/content/new-event-topic-modal.js:26:23 -msgid "Please enter a topic name" -msgstr "" - -#: app/components/modals/admin/content/new-event-type-modal.js:26:23 -msgid "Please enter a event type" -msgstr "" - -#: app/components/modals/change-image-modal.js:15:30 -msgid "Placeholder has been saved successfully." -msgstr "" - -#: app/components/modals/change-image-modal.js:21:28 -msgid "An unexpected error has occurred. Placeholder not saved." -msgstr "" - -#: app/components/modals/confirm-event-transfer-modal.js:31:23 -msgid "Please enter an email for new organizer" -msgstr "" - -#: app/components/modals/confirm-event-transfer-modal.js:35:23 -msgid "Please enter a valid email address for new organizer" -msgstr "" - -#: app/components/modals/paytm-otp.js:20:23 -msgid "Please enter the OTP" -msgstr "" - -#: app/components/modals/paytm-payment-options.js:22:23 -msgid "Please enter the Mobile Number" -msgstr "" - -#: app/components/modals/paytm-payment-options.js:27:23 -msgid "Please enter a valid mobile number" -msgstr "" - -#: app/components/modals/session-notify-modal.hbs:3:2 -msgid "Notify Speakers" -msgstr "" - -#: app/components/modals/session-notify-modal.hbs:44:4 -msgid "Notify" -msgstr "" - -#: app/components/modals/session-notify-modal.js:63:26 -msgid "Email scheduled to be sent successfully" -msgstr "" - -#: app/components/modals/tax-info-modal.js:28:23 -msgid "Please give a name" -msgstr "" - -#: app/components/modals/tax-info-modal.js:37:23 -msgid "Please tell us your tax rate (in %)" -msgstr "" - -#: app/components/modals/tax-info-modal.js:41:23 -msgid "Please give a valid tax rate" -msgstr "" - -#: app/components/modals/tax-info-modal.js:50:23 -msgid "Please give us your tax ID" -msgstr "" - -#: app/components/modals/tax-info-modal.js:61:23 -msgid "Please give us your company name" -msgstr "" - -#: app/components/modals/tax-info-modal.js:72:23 -msgid "Please give us your address" -msgstr "" - -#: app/components/modals/tax-info-modal.js:83:23 -msgid "Please give a city" -msgstr "" - -#: app/components/modals/tax-info-modal.js:94:23 -msgid "Please give a state" -msgstr "" - -#: app/components/modals/tax-info-modal.js:105:23 -msgid "Please provide a zip code" -msgstr "" - -#: app/components/notification-dropdown.js:29:28 -#: app/mixins/notifications.js:9:30 -msgid "Marked as Read successfully" -msgstr "" - -#: app/components/public/call-for-speakers.js:26:24 -msgid "You need to add your speaker details first before submitting a session" -msgstr "" - -#: app/components/public/session-item.hbs:58:16 -#: app/templates/components/forms/events/view/edit-session.hbs:15:11 -msgid "Slides" -msgstr "" - -#: app/components/public/session-item.hbs:69:16 -#: app/templates/components/events/view/export/download-zip.hbs:16:39 -msgid "Video" -msgstr "" - -#: app/components/public/ticket-list.js:226:21 -msgid "Please enter a donation amount between {{minPrice}} and {{maxPrice}}" -msgstr "" - -#: app/components/public/ticket-list.js:247:23 -msgid "Please enter the promotional Code" -msgstr "" - -#: app/components/unverified-user-message.hbs:9:12 -msgid "Confirmation mail has been sent again successfully!" -msgstr "" - -#: app/components/unverified-user-message.hbs:14:14 -msgid "To make your event live, please verify your account by clicking on the confirmation link that has been emailed to you." -msgstr "" - -#: app/components/unverified-user-message.hbs:16:14 -msgid "Your account is unverified." -msgstr "" - -#: app/components/unverified-user-message.hbs:16:68 -msgid "Please verify by clicking on the confirmation link that has been emailed to you." -msgstr "" - -#: app/components/unverified-user-message.hbs:19:13 -msgid "Did not get the email?" -msgstr "" - -#: app/components/unverified-user-message.hbs:19:98 -msgid "Please click here to resend the confirmation mail." -msgstr "" - -#: app/components/unverified-user-message.js:25:28 -msgid "Verification mail sent successfully" -msgstr "" - -#: app/components/widgets/forms/file-upload.js:30:28 -msgid "File uploaded successfully" -msgstr "" - -#: app/components/widgets/forms/file-upload.js:60:24 -#: app/components/widgets/forms/image-upload.js:71:24 -msgid "No FileReader support. Please use a more latest browser" -msgstr "" - -#: app/controllers/account/password.js:18:28 -msgid "Password updated successfully" -msgstr "" - -#: app/controllers/account/password.js:31:28 -msgid "Unexpected error. Password did not change." -msgstr "" - -#: app/controllers/account/profile.js:10:26 -#: app/controllers/admin/users/view/account/contact-info.js:11:28 -msgid "Your Contact Info has been updated" -msgstr "" - -#: app/controllers/admin/content/events.js:19:24 -msgid "An unexpected error has occurred. SubTopics not loaded." -msgstr "" - -#: app/controllers/admin/content/events.js:44:28 -msgid "This Event Property has been deleted successfully." -msgstr "" - -#: app/controllers/admin/content/events.js:51:26 -msgid "An unexpected error has occurred. Event Type was not deleted." -msgstr "" - -#: app/controllers/admin/content/events.js:68:28 -msgid "{{item}} has been added successfully." -msgstr "" - -#: app/controllers/admin/content/events.js:77:77 -msgid "{{item}} not saved." -msgstr "" - -#: app/controllers/admin/content/index.js:11:28 -msgid "Social links have been saved successfully." -msgstr "" - -#: app/controllers/admin/content/index.js:18:26 -msgid "An unexpected error has occurred. Social links not saved." -msgstr "" - -#: app/controllers/admin/content/pages.js:30:28 -msgid "Page details have been saved successfully." -msgstr "" - -#: app/controllers/admin/content/pages.js:37:26 -msgid "An unexpected error has occurred. Page Details not saved." -msgstr "" - -#: app/controllers/admin/content/translations.js:17:26 -msgid "Translations Zip generated successfully." -msgstr "" - -#: app/controllers/admin/events/list.js:124:26 -#: app/controllers/admin/users/view/events/list.js:79:26 -#: app/controllers/events/list.js:74:26 -#: app/controllers/events/view/settings.js:17:28 -msgid "Event has been deleted successfully." -msgstr "" - -#: app/controllers/admin/events/list.js:155:26 -#: app/controllers/admin/users/view/events/list.js:97:26 -msgid "Event has been restored successfully." -msgstr "" - -#: app/controllers/admin/events/list.js:176:26 -msgid "Event details modified successfully" -msgstr "" - -#: app/controllers/admin/events/list.js:198:45 -msgid "Event promoted successfully" -msgstr "" - -#: app/controllers/admin/events/list.js:198:90 -msgid "Event unpromoted successfully" -msgstr "" - -#: app/controllers/admin/messages.js:12:26 -msgid "Changes have been saved successfully" -msgstr "" - -#: app/controllers/admin/permissions/event-roles.js:20:28 -msgid "Admin Event role permissions have been saved successfully." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:35:28 -msgid "System role has been deleted successfully." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:42:26 -msgid "An unexpected error has occurred. System role was not deleted." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:64:24 -msgid "Please select atleast one panel." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:73:30 -msgid "System role have been saved successfully." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:80:28 -msgid "An unexpected error has occurred. System role not saved." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:96:28 -msgid "User permissions have been saved successfully." -msgstr "" - -#: app/controllers/admin/permissions/system-roles.js:103:26 -msgid "An unexpected error has occurred. User permissions not saved." -msgstr "" - -#: app/controllers/admin/sessions/list.js:80:26 -#: app/controllers/events/view/sessions/list.js:114:28 -msgid "Session has been deleted successfully." -msgstr "" - -#: app/controllers/admin/settings/analytics.js:11:28 -#: app/controllers/admin/settings/index.js:11:28 -#: app/controllers/admin/settings/microservices.js:11:28 -#: app/controllers/admin/settings/payment-gateway.js:11:28 -msgid "Settings have been saved successfully." -msgstr "" - -#: app/controllers/admin/settings/analytics.js:18:26 -#: app/controllers/admin/settings/billing.js:27:24 -#: app/controllers/admin/settings/index.js:18:26 -#: app/controllers/admin/settings/microservices.js:18:26 -#: app/controllers/admin/settings/payment-gateway.js:18:26 -#: app/controllers/admin/settings/ticket-fees.js:28:28 -msgid "An unexpected error has occurred. Settings not saved." -msgstr "" - -#: app/controllers/admin/settings/billing.js:21:26 -msgid "Admin Billing info has been saved successfully" -msgstr "" - -#: app/controllers/admin/settings/images.js:12:32 -msgid "Image sizes have been saved successfully." -msgstr "" - -#: app/controllers/admin/settings/images.js:19:30 -#: app/controllers/admin/settings/images.js:27:26 -msgid "An unexpected error has occurred. Image sizes not saved." -msgstr "" - -#: app/controllers/admin/settings/ticket-fees.js:13:24 -msgid "Please fill the required fields." -msgstr "" - -#: app/controllers/admin/settings/ticket-fees.js:21:30 -msgid "Ticket Fee settings have been saved successfully." -msgstr "" - -#: app/controllers/admin/users/list.js:99:26 -msgid "User has been deleted successfully." -msgstr "" - -#: app/controllers/admin/users/list.js:131:26 -msgid "User has been restored successfully." -msgstr "" - -#: app/controllers/event-invoice/paid.js:16:26 -msgid "Here is your Event Invoice" -msgstr "" - -#: app/controllers/events/view.js:12:28 -msgid "Event copied successfully" -msgstr "" - -#: app/controllers/events/view.js:18:26 -msgid "Copying of event failed" -msgstr "" - -#: app/controllers/events/view/export.js:25:32 -msgid "Event exported." -msgstr "" - -#: app/controllers/events/view/export.js:32:30 -msgid "Event export is going on." -msgstr "" - -#: app/controllers/events/view/export.js:38:30 -#: app/controllers/events/view/export.js:46:28 -msgid "Event export failed." -msgstr "" - -#: app/controllers/events/view/index.js:49:28 -msgid "Sponsor has been deleted successfully." -msgstr "" - -#: app/controllers/events/view/sessions.js:56:32 -#: app/controllers/events/view/sessions.js:63:30 -#: app/controllers/events/view/speakers.js:35:30 -#: app/controllers/events/view/speakers.js:39:28 -msgid "CSV Export has failed." -msgstr "" - -#: app/controllers/events/view/sessions/create.js:19:34 -#: app/controllers/events/view/sessions/create.js:47:30 -#: app/controllers/events/view/sessions/edit.js:19:34 -#: app/controllers/events/view/sessions/edit.js:48:30 -#: app/controllers/events/view/speakers/create.js:25:26 -#: app/controllers/public/cfs/new-session.js:13:26 -msgid "Your session has been saved" -msgstr "" - -#: app/controllers/events/view/sessions/list.js:147:31 -msgid "locked" -msgstr "" - -#: app/controllers/events/view/sessions/list.js:147:55 -msgid "unlocked" -msgstr "" - -#: app/controllers/events/view/sessions/list.js:150:26 -#: app/controllers/events/view/sessions/list.js:178:26 -msgid "Session has been {{action}} successfully." -msgstr "" - -#: app/controllers/events/view/sessions/list.js:202:30 -#: app/controllers/events/view/sessions/list.js:220:30 -msgid "Session feedback has been updated successfully." -msgstr "" - -#: app/controllers/events/view/sessions/list.js:250:28 -msgid "Session feedback has been created successfully." -msgstr "" - -#: app/controllers/events/view/settings.js:72:26 -msgid "Owner Role Invite sent successfully." -msgstr "" - -#: app/controllers/events/view/speakers/edit.js:14:28 -#: app/controllers/public/cfs/edit-speaker.js:12:28 -#: app/controllers/public/cfs/new-speaker.js:12:28 -msgid "Speaker details have been saved" -msgstr "" - -#: app/controllers/events/view/speakers/list.js:79:26 -msgid "Speaker has been deleted successfully." -msgstr "" - -#: app/controllers/events/view/speakers/list.js:103:26 -msgid "Speaker details modified successfully" -msgstr "" - -#: app/controllers/events/view/tickets/access-codes/create.js:11:28 -msgid "Access code has been successfully created." -msgstr "" - -#: app/controllers/events/view/tickets/access-codes/create.js:16:26 -#: app/controllers/events/view/tickets/access-codes/edit.js:16:26 -msgid "An unexpected error has occurred. Access code cannot be created." -msgstr "" - -#: app/controllers/events/view/tickets/access-codes/edit.js:11:28 -msgid "Access code has been successfully updated." -msgstr "" - -#: app/controllers/events/view/tickets/access-codes/list.js:54:28 -msgid "Access Code has been deleted successfully." -msgstr "" - -#: app/controllers/events/view/tickets/access-codes/list.js:72:28 -msgid "Access Code has been updated successfully." -msgstr "" - -#: app/controllers/events/view/tickets/add-order.js:87:30 -msgid "Order details saved. Please fill further details within 10 minutes." -msgstr "" - -#: app/controllers/events/view/tickets/attendees.js:37:57 -#: app/controllers/events/view/tickets/attendees.js:41:55 -#: app/controllers/events/view/tickets/orders.js:37:57 -#: app/controllers/events/view/tickets/orders.js:41:55 -msgid "Export has failed." -msgstr "" - -#: app/controllers/events/view/tickets/attendees/list.js:67:52 -msgid "Attendee Checked-In Successfully" -msgstr "" - -#: app/controllers/events/view/tickets/attendees/list.js:67:102 -msgid "Attendee Checked-Out Successfully" -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/create.js:11:28 -msgid "Discount code has been successfully created." -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/create.js:16:26 -msgid "An unexpected error has occurred. Discount code cannot be created." -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/edit.js:11:28 -msgid "Discount code has been successfully updated." -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/edit.js:16:26 -msgid "An unexpected error has occurred. Discount code cannot be updated." -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/list.js:62:28 -msgid "Discount Code has been deleted successfully." -msgstr "" - -#: app/controllers/events/view/tickets/discount-codes/list.js:80:28 -msgid "Discount Code has been updated successfully." -msgstr "" - -#: app/controllers/events/view/tickets/order-form.js:21:28 -msgid "Your Attendee form has been saved" -msgstr "" - -#: app/controllers/events/view/tickets/orders/list.js:67:28 -msgid "Order has been marked completed successfully." -msgstr "" - -#: app/controllers/events/view/tickets/orders/list.js:84:28 -msgid "Order has been deleted successfully." -msgstr "" - -#: app/controllers/events/view/tickets/orders/list.js:103:28 -msgid "Order has been cancelled successfully." -msgstr "" - -#: app/controllers/events/view/tickets/orders/list.js:125:26 -msgid "Email confirmation has been sent to attendees successfully" -msgstr "" - -#: app/controllers/events/view/tickets/orders/list.js:128:26 -msgid "Only 5 resend actions are allowed in a minute" -msgstr "" - -#: app/controllers/notifications.js:17:28 -msgid "All notifications marked read successfully" -msgstr "" - -#: app/controllers/oauth/callback.js:29:41 -#: app/controllers/public/index.js:86:37 app/controllers/register.js:68:37 -msgid "Your credentials were incorrect." -msgstr "" - -#: app/controllers/orders/new.js:31:32 -msgid "Order details saved. Please fill the payment details" -msgstr "" - -#: app/controllers/orders/new.js:37:32 -msgid "Order details saved. Your order is successful" -msgstr "" - -#: app/controllers/orders/pending.js:56:26 -msgid "Payment has succeeded" -msgstr "" - -#: app/controllers/orders/view.js:26:28 -msgid "Here is your Order Invoice" -msgstr "" - -#: app/controllers/orders/view.js:57:28 -msgid "Here are your tickets" -msgstr "" - -#: app/controllers/orders/view.js:65:26 -msgid "An unexpected Error occurred" -msgstr "" - -#: app/controllers/public/cfs/edit-session.js:12:28 -msgid "Session details have been saved" -msgstr "" - -#: app/controllers/public/index.js:121:28 -msgid "Order details saved. Please fill further details within {{time}} minutes." -msgstr "" - -#: app/controllers/public/session/view.js:23:26 -msgid "Proposal has been withdrawn successfully." -msgstr "" - -#: app/controllers/register.js:33:35 -msgid "User already exists." -msgstr "" - -#: app/controllers/register.js:35:35 -msgid "Invalid email address." -msgstr "" - -#: app/mixins/event-wizard.js:17:22 -#: app/routes/events/view/edit/basic-details.js:8:11 -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:13:12 -msgid "Basic Details" -msgstr "" - -#: app/mixins/event-wizard.js:18:22 -msgid "Tell about your event" -msgstr "" - -#: app/mixins/event-wizard.js:23:22 -#: app/templates/components/forms/admin/settings/billing.hbs:88:44 -msgid "Additional Info" -msgstr "" - -#: app/mixins/event-wizard.js:24:22 -msgid "Extra details about your event" -msgstr "" - -#: app/mixins/event-wizard.js:29:22 -#: app/routes/events/view/edit/attendee.js:8:11 -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:43:12 -#: app/templates/components/forms/wizard/attendee-step.hbs:14:16 -msgid "Attendee Form" -msgstr "" - -#: app/mixins/event-wizard.js:30:22 -msgid "Know your audience" -msgstr "" - -#: app/mixins/event-wizard.js:35:22 -#: app/routes/events/view/edit/sponsors.js:8:11 -#: app/templates/components/events/view/export/api-response.hbs:25:39 -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:58:12 -#: app/templates/components/forms/wizard/sponsors-step.hbs:14:16 -#: app/templates/components/public/side-menu.hbs:50:10 -#: app/templates/components/public/side-menu.hbs:54:10 -msgid "Sponsors" -msgstr "" - -#: app/mixins/event-wizard.js:36:22 -msgid "Advertise your sponsors" -msgstr "" - -#: app/mixins/event-wizard.js:41:22 -#: app/routes/events/view/edit/sessions-speakers.js:9:11 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:12:16 -msgid "Sessions & Speakers" -msgstr "" - -#: app/mixins/event-wizard.js:42:22 -msgid "Expand your event" -msgstr "" - -#: app/mixins/event-wizard.js:163:28 -msgid "Your event has been saved" -msgstr "" - -#: app/mixins/notifications.js:26:30 -msgid "Marked all as Read successfully" -msgstr "" - -#: app/routes/account.js:7:11 app/routes/admin/users/view/account.js:8:11 -#: app/templates/admin/users/view/account.hbs:2:24 -#: app/templates/components/nav-bar.hbs:37:65 -#: app/templates/components/side-bar.hbs:21:57 -msgid "Account" -msgstr "" - -#: app/routes/account/applications.js:8:11 -#: app/routes/admin/users/view/account/applications.js:8:11 -#: app/templates/account.hbs:19:10 -#: app/templates/admin/users/view/account.hbs:13:10 -msgid "Applications" -msgstr "" - -#: app/routes/account/billing.js:8:11 app/routes/account/billing/index.js:6:11 -#: app/templates/components/event-invoice/billing-info.hbs:3:27 -#: app/templates/components/forms/wizard/basic-details-step.hbs:581:22 -msgid "Billing Info" -msgstr "" - -#: app/routes/account/billing/invoices.js:5:11 -#: app/routes/admin/sales/invoices.js:6:11 -#: app/templates/account/billing.hbs:6:10 app/templates/admin/sales.hbs:6:4 -#: app/templates/admin/sales/invoices.hbs:5:8 -msgid "Invoices" -msgstr "" - -#: app/routes/account/billing/invoices/list.js:18:13 -#: app/routes/events/view/tickets/attendees/list.js:20:15 -#: app/routes/events/view/tickets/orders/list.js:16:15 -#: app/routes/notifications/all.js:10:15 -#: app/templates/account/billing/invoices.hbs:6:10 -#: app/templates/admin/sessions.hbs:6:10 -#: app/templates/components/events/view/overview/general-info.hbs:73:12 -#: app/templates/components/public/session-filter.hbs:3:4 -#: app/templates/events/view/sessions.hbs:8:14 -#: app/templates/events/view/speakers.hbs:8:14 -#: app/templates/events/view/tickets/access-codes.hbs:19:12 -#: app/templates/events/view/tickets/attendees.hbs:78:10 -#: app/templates/events/view/tickets/discount-codes.hbs:18:12 -#: app/templates/events/view/tickets/orders.hbs:72:10 -#: app/templates/notifications/all.hbs:8:30 -#: app/templates/public/sessions.hbs:4:122 -msgid "All" -msgstr "" - -#: app/routes/account/billing/payment-info.js:6:11 -msgid "Payment Info" -msgstr "" - -#: app/routes/account/danger-zone.js:8:11 app/templates/account.hbs:23:8 -msgid "Danger Zone" -msgstr "" - -#: app/routes/account/email-preferences.js:8:11 -#: app/routes/admin/users/view/account/email-preferences.js:8:11 -msgid "Email Preferences" -msgstr "" - -#: app/routes/account/password.js:8:11 app/templates/account.hbs:12:8 -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:74:6 -#: app/templates/components/forms/login-form.hbs:28:120 -#: app/templates/components/forms/register-form.hbs:21:122 -#: app/templates/components/forms/reset-password-form.hbs:23:102 -msgid "Password" -msgstr "" - -#: app/routes/account/profile.js:9:11 app/templates/account.hbs:6:8 -msgid "Profile" -msgstr "" - -#: app/routes/admin.js:19:11 -msgid "Administration" -msgstr "" - -#: app/routes/admin/content.js:7:11 app/templates/admin.hbs:32:8 -msgid "Content" -msgstr "" - -#: app/routes/admin/content/events.js:7:11 -#: app/routes/admin/content/index.js:8:11 app/templates/admin/content.hbs:6:10 -msgid "Social Links" -msgstr "" - -#: app/routes/admin/content/pages.js:7:11 app/routes/pages.js:7:26 -#: app/templates/admin/content.hbs:9:10 -#: app/templates/admin/content/pages.hbs:6:32 -msgid "Pages" -msgstr "" - -#: app/routes/admin/content/system-images.js:7:11 -#: app/templates/admin/content.hbs:12:10 -msgid "System Images" -msgstr "" - -#: app/routes/admin/content/system-images/list.js:7:11 -msgid "Sub topics" -msgstr "" - -#: app/routes/admin/content/translations.js:7:11 -#: app/templates/admin/content.hbs:15:10 -msgid "Translations" -msgstr "" - -#: app/routes/admin/events.js:7:11 app/routes/admin/users/view/events.js:8:11 -#: app/routes/events.js:8:11 app/templates/admin.hbs:8:8 -#: app/templates/admin/content.hbs:18:10 app/templates/admin/index.hbs:54:10 -#: app/templates/admin/sales/discounted-events.hbs:11:14 -#: app/templates/admin/sales/revenue.hbs:13:14 -#: app/templates/components/ui-table/cell/admin/users/cell-user-links.hbs:6:69 -#: app/templates/explore.hbs:6:26 -msgid "Events" -msgstr "" - -#: app/routes/admin/events/import.js:7:11 app/routes/events/import.js:6:11 -#: app/templates/admin/events.hbs:21:10 app/templates/events.hbs:16:10 -msgid "Import" -msgstr "" - -#: app/routes/admin/events/list.js:11:15 app/routes/events/list.js:10:15 -#: app/templates/admin/index.hbs:62:12 -#: app/templates/admin/users/view/events.hbs:6:10 app/templates/events.hbs:7:10 -msgid "Live" -msgstr "" - -#: app/routes/admin/events/list.js:13:15 app/routes/events/list.js:12:15 -#: app/templates/admin/index.hbs:31:12 app/templates/admin/index.hbs:72:12 -#: app/templates/admin/users/view/events.hbs:9:10 -#: app/templates/events.hbs:10:10 -msgid "Draft" -msgstr "" - -#: app/routes/admin/events/list.js:15:15 -#: app/routes/admin/users/view/sessions/list.js:13:15 -#: app/routes/admin/users/view/tickets/list.js:13:15 -#: app/routes/events/list.js:14:15 app/routes/my-sessions/list.js:13:15 -#: app/routes/my-tickets/past.js:8:11 app/templates/admin/index.hbs:82:12 -#: app/templates/admin/users/view/events.hbs:12:10 -#: app/templates/events.hbs:13:10 -msgid "Past" -msgstr "" - -#: app/routes/admin/events/list.js:17:15 app/routes/admin/users/list.js:13:15 -#: app/templates/admin/sessions.hbs:14:10 -#: app/templates/admin/users/view/events.hbs:15:10 -#: app/templates/components/ui-table/cell/admin/users/cell-status.hbs:6:28 -msgid "Deleted" -msgstr "" - -#: app/routes/admin/messages.js:7:11 app/templates/admin.hbs:23:8 -#: app/templates/admin/index.hbs:93:10 -msgid "Messages" -msgstr "" - -#: app/routes/admin/permissions.js:7:11 -#: app/routes/events/view/team/permissions.ts:7:11 app/templates/admin.hbs:20:8 -#: app/templates/events/view/team.hbs:9:10 -#: app/templates/events/view/team/permissions.hbs:4:33 -msgid "Permissions" -msgstr "" - -#: app/routes/admin/permissions/event-roles.js:7:11 -#: app/templates/admin/index.hbs:164:10 app/templates/admin/permissions.hbs:7:6 -#: app/templates/admin/permissions/event-roles.hbs:4:4 -msgid "Event Roles" -msgstr "" - -#: app/routes/admin/permissions/system-roles.js:8:11 -#: app/templates/admin/index.hbs:137:10 app/templates/admin/permissions.hbs:4:6 -#: app/templates/admin/permissions/system-roles.hbs:7:6 -msgid "System Roles" -msgstr "" - -#: app/routes/admin/reports.js:7:11 app/templates/admin.hbs:26:8 -msgid "Reports" -msgstr "" - -#: app/routes/admin/reports/kubernetes-server-logs.js:7:11 -#: app/templates/admin/reports.hbs:9:10 -msgid "Kubernetes Server Logs" -msgstr "" - -#: app/routes/admin/reports/system-logs.js:7:11 -#: app/templates/admin/reports.hbs:6:10 -msgid "System Logs" -msgstr "" - -#: app/routes/admin/reports/system-logs/activity-logs.js:6:11 -msgid "Activity Logs" -msgstr "" - -#: app/routes/admin/reports/system-logs/mail-logs.js:6:11 -msgid "Mail Logs" -msgstr "" - -#: app/routes/admin/reports/system-logs/notification-logs.js:6:11 -msgid "Notification Logs" -msgstr "" - -#: app/routes/admin/sales.js:7:11 app/templates/admin.hbs:11:8 -#: app/templates/admin/sales/discounted-events.hbs:34:14 -#: app/templates/admin/sales/discounted-events.hbs:40:14 -#: app/templates/admin/sales/discounted-events.hbs:46:14 -#: app/templates/admin/sales/locations.hbs:17:38 -#: app/templates/admin/sales/locations.hbs:19:38 -#: app/templates/admin/sales/locations.hbs:21:38 -#: app/templates/admin/sales/organizers.hbs:28:14 -#: app/templates/admin/sales/organizers.hbs:34:14 -#: app/templates/admin/sales/organizers.hbs:40:14 -#: app/templates/events/view/tickets/index.hbs:7:91 -#: app/templates/events/view/tickets/index.hbs:131:36 -#: app/templates/events/view/tickets/index.hbs:133:36 -#: app/templates/events/view/tickets/index.hbs:135:36 -msgid "Sales" -msgstr "" - -#: app/routes/admin/sales/discounted-events.js:7:11 -msgid "Discounted Events" -msgstr "" - -#: app/routes/admin/sales/index.js:10:11 -#: app/routes/events/view/tickets/index.js:7:11 -#: app/templates/events/view.hbs:26:10 -#: app/templates/events/view/tickets.hbs:6:10 -msgid "Overview" -msgstr "" - -#: app/routes/admin/sales/locations.js:7:11 -#: app/templates/admin/sales/locations.hbs:10:28 -#: app/templates/components/events/view/overview/general-info.hbs:28:20 -#: app/templates/components/forms/wizard/basic-details-step.hbs:18:78 -msgid "Location" -msgstr "" - -#: app/routes/admin/sales/marketer.js:7:11 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:23:45 -msgid "Marketer" -msgstr "" - -#: app/routes/admin/sales/organizers.js:7:11 -#: app/templates/admin/sales/organizers.hbs:11:14 -#: app/templates/components/orders/organizer-info.hbs:3:27 -#: app/templates/components/public/side-menu.hbs:61:10 -#: app/templates/components/public/side-menu.hbs:65:10 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:8:47 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:39:134 -#: app/templates/components/ui-table/cell/cell-roles.hbs:4:38 -#: app/templates/events/view/team/permissions.hbs:6:33 -msgid "Organizer" -msgstr "" - -#: app/routes/admin/sales/revenue.js:7:11 app/templates/admin/sales.hbs:31:10 -#: app/templates/admin/sales/revenue.hbs:30:14 -msgid "Revenue" -msgstr "" - -#: app/routes/admin/sessions.js:8:11 app/routes/events/view/sessions.js:7:11 -#: app/routes/public/sessions.js:23:11 app/templates/admin.hbs:14:8 -#: app/templates/admin/index.hbs:13:10 -#: app/templates/components/events/view/export/api-response.hbs:13:39 -#: app/templates/components/public/speaker-item.hbs:44:8 -#: app/templates/components/ui-table/cell/admin/users/cell-user-links.hbs:3:94 -#: app/templates/events/view.hbs:35:10 app/templates/public/sessions.hbs:1:22 -msgid "Sessions" -msgstr "" - -#: app/routes/admin/sessions/list.js:11:13 -#: app/routes/events/view/sessions/list.js:14:13 -msgid "Session" -msgstr "" - -#: app/routes/admin/settings.js:7:11 -#: app/routes/admin/users/view/settings.js:8:11 -#: app/routes/events/view/settings.js:7:11 app/templates/admin.hbs:29:8 -#: app/templates/events/view.hbs:48:12 -msgid "Settings" -msgstr "" - -#: app/routes/admin/settings/analytics.js:8:11 -#: app/templates/admin/settings.hbs:15:10 -msgid "Analytics" -msgstr "" - -#: app/routes/admin/settings/billing.js:5:11 -msgid "Admin Billing" -msgstr "" - -#: app/routes/admin/settings/images.js:8:11 -#: app/templates/admin/settings.hbs:12:10 -msgid "Images" -msgstr "" - -#: app/routes/admin/settings/index.js:8:11 -#: app/templates/admin/settings.hbs:6:10 -msgid "System" -msgstr "" - -#: app/routes/admin/settings/microservices.js:8:11 -#: app/templates/admin/settings.hbs:9:10 -msgid "Microservices" -msgstr "" - -#: app/routes/admin/settings/payment-gateway.js:8:11 -msgid "Payment Gateway" -msgstr "" - -#: app/routes/admin/settings/ticket-fees.js:8:11 -#: app/templates/admin/settings.hbs:21:10 -msgid "Ticket Fees" -msgstr "" - -#: app/routes/admin/users.js:7:11 app/templates/admin.hbs:17:8 -#: app/templates/admin/index.hbs:132:10 -msgid "Users" -msgstr "" - -#: app/routes/admin/users/list.js:11:15 -#: app/routes/events/view/tickets/access-codes/list.js:9:15 -#: app/routes/events/view/tickets/discount-codes/list.js:9:15 -#: app/templates/components/forms/events/view/create-access-code.hbs:24:15 -#: app/templates/components/forms/events/view/create-discount-code.hbs:60:15 -#: app/templates/components/ui-table/cell/admin/users/cell-status.hbs:2:30 -#: app/templates/components/ui-table/cell/cell-label.hbs:6:41 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-status.hbs:6:41 -#: app/templates/events/view/tickets/access-codes.hbs:22:12 -#: app/templates/events/view/tickets/discount-codes.hbs:21:12 -msgid "Active" -msgstr "" - -#: app/routes/admin/users/list.js:15:15 -#: app/routes/events/view/tickets/access-codes/list.js:11:15 -#: app/routes/events/view/tickets/discount-codes/list.js:11:15 -#: app/templates/components/forms/events/view/create-discount-code.hbs:68:15 -#: app/templates/components/ui-table/cell/admin/users/cell-status.hbs:4:31 -#: app/templates/components/ui-table/cell/cell-label.hbs:8:42 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-status.hbs:8:42 -#: app/templates/events/view/tickets/access-codes.hbs:25:12 -#: app/templates/events/view/tickets/discount-codes.hbs:24:12 -msgid "Inactive" -msgstr "" - -#: app/routes/admin/users/view/sessions.js:8:11 app/routes/my-sessions.js:8:11 -msgid "My sessions" -msgstr "" - -#: app/routes/admin/users/view/sessions/list.js:11:15 -#: app/routes/admin/users/view/tickets/index.js:7:11 -#: app/routes/admin/users/view/tickets/list.js:11:15 -#: app/routes/my-sessions/index.js:8:11 app/routes/my-sessions/list.js:11:15 -#: app/routes/my-tickets/upcoming.js:7:11 -msgid "Upcoming" -msgstr "" - -#: app/routes/admin/users/view/tickets.js:8:11 app/routes/my-tickets.js:8:11 -#: app/templates/admin/users/view/tickets.hbs:2:24 -#: app/templates/components/nav-bar.hbs:33:60 -#: app/templates/components/side-bar.hbs:17:52 -msgid "My Tickets" -msgstr "" - -#: app/routes/create.js:9:11 app/templates/create.hbs:6:27 -msgid "Create an Event" -msgstr "" - -#: app/routes/events/view/edit.js:9:11 -msgid "Edit Event" -msgstr "" - -#: app/routes/events/view/export.js:7:11 app/templates/events/view.hbs:44:10 -msgid "Export" -msgstr "" - -#: app/routes/events/view/scheduler.js:6:11 app/templates/events/view.hbs:32:10 -msgid "Scheduler" -msgstr "" - -#: app/routes/events/view/sessions/create.js:7:11 -#: app/routes/events/view/speakers/create.js:7:11 -msgid "Create session" -msgstr "" - -#: app/routes/events/view/speakers.js:7:11 -#: app/templates/components/events/view/export/api-response.hbs:22:39 -#: app/templates/components/public/side-menu.hbs:14:10 -#: app/templates/components/public/side-menu.hbs:28:10 -#: app/templates/components/public/speaker-list.hbs:1:22 -#: app/templates/events/view.hbs:38:10 -msgid "Speakers" -msgstr "" - -#: app/routes/events/view/speakers/list.js:8:15 -#: app/routes/events/view/tickets/attendees/list.js:10:15 -#: app/routes/events/view/tickets/orders/list.js:10:15 -#: app/templates/components/events/view/overview/general-info.hbs:75:14 -#: app/templates/components/events/view/overview/general-info.hbs:89:14 -#: app/templates/components/orders/order-summary.hbs:28:10 -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:6:22 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:6:22 -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:6:22 -#: app/templates/events/view/speakers.hbs:11:14 -#: app/templates/events/view/tickets/attendees.hbs:62:12 -#: app/templates/events/view/tickets/index.hbs:47:16 -#: app/templates/events/view/tickets/orders.hbs:62:12 -msgid "Pending" -msgstr "" - -#: app/routes/events/view/speakers/list.js:10:15 -#: app/templates/admin/index.hbs:21:12 -#: app/templates/components/events/view/overview/general-info.hbs:74:14 -#: app/templates/components/events/view/overview/general-info.hbs:88:14 -#: app/templates/components/events/view/overview/manage-roles.hbs:13:105 -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:4:22 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:4:22 -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:4:22 -#: app/templates/events/view/speakers.hbs:14:14 -msgid "Accepted" -msgstr "" - -#: app/routes/events/view/speakers/list.js:12:15 -#: app/templates/admin/index.hbs:41:12 -#: app/templates/components/events/view/overview/general-info.hbs:76:14 -#: app/templates/components/events/view/overview/general-info.hbs:90:14 -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:7:22 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:7:22 -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:7:22 -#: app/templates/events/view/speakers.hbs:20:14 -msgid "Rejected" -msgstr "" - -#: app/routes/events/view/team.ts:7:11 app/templates/events/view.hbs:41:10 -#: app/templates/events/view/team.hbs:6:10 -msgid "Team" -msgstr "" - -#: app/routes/events/view/tickets.js:7:11 -#: app/templates/admin/sales/discounted-events.hbs:31:14 -#: app/templates/admin/sales/discounted-events.hbs:37:14 -#: app/templates/admin/sales/discounted-events.hbs:43:14 -#: app/templates/admin/sales/locations.hbs:16:38 -#: app/templates/admin/sales/locations.hbs:18:38 -#: app/templates/admin/sales/locations.hbs:20:38 -#: app/templates/admin/sales/marketer.hbs:14:38 -#: app/templates/admin/sales/organizers.hbs:25:14 -#: app/templates/admin/sales/organizers.hbs:31:14 -#: app/templates/admin/sales/organizers.hbs:37:14 -#: app/templates/admin/sales/revenue.hbs:24:14 -#: app/templates/components/events/view/export/api-response.hbs:28:39 -#: app/templates/components/events/view/overview/event-tickets.hbs:2:22 -#: app/templates/components/public/side-menu.hbs:9:10 -#: app/templates/components/public/side-menu.hbs:23:10 -#: app/templates/components/ui-table/cell/admin/users/cell-user-links.hbs:9:70 -#: app/templates/events/view.hbs:29:10 -#: app/templates/events/view/tickets/index.hbs:130:36 -#: app/templates/events/view/tickets/index.hbs:132:36 -#: app/templates/events/view/tickets/index.hbs:134:36 -#: app/templates/public/index.hbs:12:32 -msgid "Tickets" -msgstr "" - -#: app/routes/events/view/tickets/access-codes.js:7:11 -msgid "Access codes" -msgstr "" - -#: app/routes/events/view/tickets/access-codes/create.js:9:11 -#: app/routes/events/view/tickets/discount-codes/create.js:7:11 -#: app/templates/admin/permissions/event-roles.hbs:24:33 -msgid "Create" -msgstr "" - -#: app/routes/events/view/tickets/access-codes/list.js:13:15 -#: app/routes/events/view/tickets/attendees/list.js:12:15 -#: app/routes/events/view/tickets/discount-codes/list.js:13:15 -#: app/routes/events/view/tickets/orders/list.js:12:15 -#: app/templates/components/orders/order-summary.hbs:151:8 -#: app/templates/components/ui-table/cell/cell-label.hbs:3:37 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-status.hbs:3:37 -#: app/templates/events/view/tickets/access-codes.hbs:28:12 -#: app/templates/events/view/tickets/attendees.hbs:66:10 -#: app/templates/events/view/tickets/discount-codes.hbs:27:12 -#: app/templates/events/view/tickets/index.hbs:64:16 -#: app/templates/events/view/tickets/orders.hbs:66:10 -msgid "Expired" -msgstr "" - -#: app/routes/events/view/tickets/add-order.js:7:11 -#: app/templates/events/view/tickets/add-order.hbs:1:22 -msgid "Add Order" -msgstr "" - -#: app/routes/events/view/tickets/attendees.js:7:11 -#: app/templates/events/view/tickets.hbs:12:10 -msgid "Attendees" -msgstr "" - -#: app/routes/events/view/tickets/attendees/list.js:8:15 -#: app/routes/events/view/tickets/orders/list.js:8:15 -#: app/templates/components/orders/order-summary.hbs:9:12 -#: app/templates/events/view/tickets/attendees.hbs:58:10 -#: app/templates/events/view/tickets/index.hbs:81:16 -#: app/templates/events/view/tickets/orders.hbs:58:10 -msgid "Placed" -msgstr "" - -#: app/routes/events/view/tickets/attendees/list.js:14:15 -#: app/routes/events/view/tickets/orders/list.js:14:15 -#: app/templates/components/orders/order-summary.hbs:165:8 -#: app/templates/events/view/tickets/attendees.hbs:69:10 -#: app/templates/events/view/tickets/index.hbs:30:16 -#: app/templates/events/view/tickets/orders.hbs:69:10 -msgid "Cancelled" -msgstr "" - -#: app/routes/events/view/tickets/attendees/list.js:16:15 -#: app/templates/components/order-card.hbs:17:12 -#: app/templates/events/view/tickets/attendees.hbs:72:10 -msgid "Checked In" -msgstr "" - -#: app/routes/events/view/tickets/attendees/list.js:18:15 -#: app/templates/components/order-card.hbs:21:12 -#: app/templates/events/view/tickets/attendees.hbs:75:10 -msgid "Not Checked In" -msgstr "" - -#: app/routes/events/view/tickets/discount-codes.js:8:11 -msgid "Discount codes" -msgstr "" - -#: app/routes/events/view/tickets/orders.js:7:11 app/routes/orders.js:8:11 -#: app/templates/admin/sales.hbs:3:4 app/templates/events/view/tickets.hbs:9:10 -#: app/templates/events/view/tickets/index.hbs:6:91 -msgid "Orders" -msgstr "" - -#: app/routes/explore.js:9:11 -msgid "Explore" -msgstr "" - -#: app/routes/login.js:8:11 app/templates/components/forms/login-form.hbs:5:31 -#: app/templates/components/forms/login-form.hbs:39:16 -#: app/templates/components/modals/login-signup-modal.hbs:12:8 -#: app/templates/components/nav-bar.hbs:47:51 -#: app/templates/components/side-bar.hbs:29:47 -msgid "Login" -msgstr "" - -#: app/routes/my-tickets/upcoming/index.js:7:11 -#: app/routes/my-tickets/upcoming/list.js:10:15 -#: app/templates/events/view/tickets/attendees.hbs:55:10 -#: app/templates/events/view/tickets/index.hbs:98:16 -#: app/templates/events/view/tickets/orders.hbs:55:10 -msgid "Completed" -msgstr "" - -#: app/routes/my-tickets/upcoming/list.js:12:15 -#: app/templates/components/explore/side-bar.hbs:163:21 -#: app/templates/components/public/call-for-speakers.hbs:5:45 -msgid "Open" -msgstr "" - -#: app/routes/not-found.js:7:11 -msgid "Page Not Found" -msgstr "" - -#: app/routes/notifications.js:8:11 -#: app/templates/admin/reports/system-logs.hbs:9:4 -#: app/templates/components/account/email-preferences-section.hbs:38:28 -#: app/templates/components/notification-dropdown.hbs:10:10 -#: app/templates/notifications/all.hbs:1:22 -msgid "Notifications" -msgstr "" - -#: app/routes/notifications/all.js:8:15 -#: app/templates/notifications/all.hbs:5:30 -msgid "Unread" -msgstr "" - -#: app/routes/orders/expired.js:8:11 -msgid "Expired Order" -msgstr "" - -#: app/routes/orders/new.js:8:11 -msgid "New Order" -msgstr "" - -#: app/routes/orders/pending.js:8:11 -msgid "Pending Order" -msgstr "" - -#: app/routes/orders/view.js:9:13 -msgid "Completed Order" -msgstr "" - -#: app/routes/orders/view.js:11:13 -msgid "Placed Order" -msgstr "" - -#: app/routes/public/cfs.js:7:11 app/routes/public/cfs/index.js:11:11 -#: app/templates/components/public/call-for-speakers.hbs:3:2 -#: app/templates/components/public/side-menu.hbs:44:8 -msgid "Call for Speakers" -msgstr "" - -#: app/routes/public/cfs/edit-session.js:7:11 -#: app/templates/components/ui-table/cell/cell-simple-buttons.hbs:5:20 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-session-title.hbs:8:22 -#: app/templates/events/view/sessions/edit.hbs:4:6 -#: app/templates/public/cfs/edit-session.hbs:4:6 -msgid "Edit Session" -msgstr "" - -#: app/routes/public/cfs/edit-speaker.js:7:11 -#: app/templates/events/view/speakers/edit.hbs:4:6 -#: app/templates/public/cfs/edit-speaker.hbs:4:6 -msgid "Edit Speaker" -msgstr "" - -#: app/routes/public/cfs/index.js:29:24 -msgid "Call For Speakers has not been issued yet." -msgstr "" - -#: app/routes/public/cfs/new-session.js:7:11 -msgid "New Session" -msgstr "" - -#: app/routes/public/cfs/new-speaker.js:7:11 -msgid "New Speaker" -msgstr "" - -#: app/routes/public/coc.js:7:11 -#: app/templates/components/forms/wizard/other-details-step.hbs:81:35 -#: app/templates/components/public/side-menu.hbs:80:8 -#: app/templates/public/coc.hbs:2:2 -msgid "Code of Conduct" -msgstr "" - -#: app/routes/public/schedule.js:9:11 -#: app/templates/components/public/side-menu.hbs:34:8 -msgid "Schedule" -msgstr "" - -#: app/routes/register.js:8:11 -#: app/templates/components/forms/register-form.hbs:3:27 -#: app/templates/components/forms/register-form.hbs:42:10 -msgid "Register" -msgstr "" - -#: app/routes/reset-password.js:7:11 -#: app/templates/components/forms/reset-password-form.hbs:49:14 -msgid "Reset Password" -msgstr "" - -#: app/routes/verify.js:8:11 app/templates/components/modals/paytm-otp.hbs:18:4 -msgid "Verify" -msgstr "" - -#: app/templates/account.hbs:9:8 app/templates/admin/settings.hbs:24:10 -msgid "Billing" -msgstr "" - -#: app/templates/account.hbs:16:10 -#: app/templates/admin/users/view/account.hbs:10:10 -msgid "Email-Preferences" -msgstr "" - -#: app/templates/account/billing.hbs:9:10 -#: app/templates/components/forms/user-payment-info-form.hbs:3:4 -msgid "Payment Information" -msgstr "" - -#: app/templates/account/billing/invoices.hbs:9:10 -msgid "Due" -msgstr "" - -#: app/templates/account/billing/invoices.hbs:12:10 -#: app/templates/components/event-invoice/invoice-summary.hbs:5:8 -#: app/templates/components/explore/side-bar.hbs:141:23 -msgid "Paid" -msgstr "" - -#: app/templates/account/billing/invoices.hbs:15:10 -msgid "Refunding" -msgstr "" - -#: app/templates/account/billing/invoices.hbs:18:10 -msgid "Refunded" -msgstr "" - -#: app/templates/admin.hbs:5:8 -#: app/templates/admin/permissions/system-roles.hbs:27:10 -#: app/templates/components/nav-bar.hbs:39:57 -#: app/templates/components/side-bar.hbs:23:49 -#: app/templates/components/ui-table/cell/admin/users/cell-system-roles.hbs:9:6 -msgid "Admin" -msgstr "" - -#: app/templates/admin/content/events.hbs:8:14 -msgid "Event Types" -msgstr "" - -#: app/templates/admin/content/events.hbs:38:51 -msgid "Are you sure you would like to delete this event type?" -msgstr "" - -#: app/templates/admin/content/events.hbs:56:14 -msgid "Event Topics" -msgstr "" - -#: app/templates/admin/content/events.hbs:86:51 -msgid "Are you sure you would like to delete this event topic?" -msgstr "" - -#: app/templates/admin/content/events.hbs:104:14 -msgid "Event Subtopics" -msgstr "" - -#: app/templates/admin/content/events.hbs:115:17 -#: app/templates/components/forms/wizard/basic-details-step.hbs:602:11 -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:8:13 -msgid "Event Topic" -msgstr "" - -#: app/templates/admin/content/events.hbs:120:38 -#: app/templates/components/forms/wizard/basic-details-step.hbs:607:19 -msgid "Select Event Topic" -msgstr "" - -#: app/templates/admin/content/events.hbs:149:53 -msgid "Are you sure you would like to delete this event sub topic?" -msgstr "" - -#: app/templates/admin/content/pages.hbs:9:105 -msgid "Create Page" -msgstr "" - -#: app/templates/admin/content/pages.hbs:14:32 -msgid "Open Event:" -msgstr "" - -#: app/templates/admin/content/pages.hbs:28:32 -msgid "Footer menu:" -msgstr "" - -#: app/templates/admin/content/system-images/list.hbs:7:102 -msgid "Change" -msgstr "" - -#: app/templates/admin/content/system-images/list.hbs:11:6 -msgid "No images to show" -msgstr "" - -#: app/templates/admin/content/translations.hbs:7:34 -#: app/templates/components/forms/admin/content/pages-form.hbs:35:28 -#: app/templates/components/forms/admin/content/translation-form.hbs:8:32 -msgid "Language" -msgstr "" - -#: app/templates/admin/content/translations.hbs:10:77 -msgid "Download .PO files" -msgstr "" - -#: app/templates/admin/content/translations.hbs:19:144 -#: app/templates/components/events/view/export/download-common.hbs:15:4 -#: app/templates/components/events/view/export/download-zip.hbs:29:6 -msgid "Download" -msgstr "" - -#: app/templates/admin/content/translations.hbs:26:28 -msgid "Update .PO files :" -msgstr "" - -#: app/templates/admin/events.hbs:6:10 -msgid "All Live" -msgstr "" - -#: app/templates/admin/events.hbs:9:10 -msgid "All Draft" -msgstr "" - -#: app/templates/admin/events.hbs:12:10 -msgid "All Past" -msgstr "" - -#: app/templates/admin/events.hbs:15:10 -msgid "All Events" -msgstr "" - -#: app/templates/admin/events.hbs:18:10 -msgid "All Deleted" -msgstr "" - -#: app/templates/admin/index.hbs:5:8 -msgid "Version 1.0.0-alpha.10" -msgstr "" - -#: app/templates/admin/index.hbs:17:10 -msgid "Number of Sessions" -msgstr "" - -#: app/templates/admin/index.hbs:58:10 -msgid "Number of Events" -msgstr "" - -#: app/templates/admin/index.hbs:97:10 -msgid "No. of Sent Mails" -msgstr "" - -#: app/templates/admin/index.hbs:102:18 -msgid "In last 24 hours" -msgstr "" - -#: app/templates/admin/index.hbs:108:18 -msgid "In last 3 days" -msgstr "" - -#: app/templates/admin/index.hbs:114:18 -msgid "In last 7 days" -msgstr "" - -#: app/templates/admin/index.hbs:120:18 -msgid "In last 1 month" -msgstr "" - -#: app/templates/admin/index.hbs:142:18 -msgid "No. of Super Admins" -msgstr "" - -#: app/templates/admin/index.hbs:146:18 -msgid "No. of Admins" -msgstr "" - -#: app/templates/admin/index.hbs:150:18 -msgid "No. of Registered Users" -msgstr "" - -#: app/templates/admin/index.hbs:154:18 -msgid "No. of Unverified Users" -msgstr "" - -#: app/templates/admin/index.hbs:158:18 -msgid "No. of Total Users" -msgstr "" - -#: app/templates/admin/index.hbs:169:18 -msgid "No. of Owners" -msgstr "" - -#: app/templates/admin/index.hbs:173:18 -msgid "No. of Organizers" -msgstr "" - -#: app/templates/admin/index.hbs:177:18 -msgid "No. of Co-Organizers" -msgstr "" - -#: app/templates/admin/index.hbs:181:18 -msgid "No. of Track Organizers" -msgstr "" - -#: app/templates/admin/index.hbs:185:18 -msgid "No. of Attendees" -msgstr "" - -#: app/templates/admin/permissions/event-roles.hbs:11:10 -msgid "Event Role/Service" -msgstr "" - -#: app/templates/admin/permissions/event-roles.hbs:26:33 -msgid "Read" -msgstr "" - -#: app/templates/admin/permissions/event-roles.hbs:28:33 -#: app/templates/components/modals/change-image-modal.hbs:44:73 -msgid "Update" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:13:6 -msgid "Pannel Permissions" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:19:12 -msgid "System Role" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:20:12 -#: app/templates/components/modals/add-system-role-modal.hbs:18:8 -msgid "Panels" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:29:10 -#: app/templates/admin/permissions/system-roles.hbs:38:10 -msgid "(Built-in-Role)" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:36:10 -#: app/templates/components/ui-table/cell/admin/users/cell-system-roles.hbs:4:6 -msgid "Super Admin" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:58:96 -#: app/templates/components/events/view/overview/manage-roles.hbs:45:45 -msgid "Are you sure you would like to delete this role?" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:67:78 -msgid "Add new Role" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:77:6 -msgid "User Permissions" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:82:14 -msgid "Permission" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:83:14 -#: app/templates/admin/permissions/system-roles.hbs:96:35 -#: app/templates/components/ui-table/cell/admin/users/cell-system-roles.hbs:16:6 -msgid "Unverified User" -msgstr "" - -#: app/templates/admin/permissions/system-roles.hbs:84:14 -#: app/templates/admin/permissions/system-roles.hbs:98:33 -msgid "Anonymous User" -msgstr "" - -#: app/templates/admin/reports/kubernetes-server-logs.hbs:2:2 -#: app/templates/components/events/view/overview/general-info.hbs:20:12 -msgid "Coming Soon" -msgstr "" - -#: app/templates/admin/reports/system-logs.hbs:3:4 -msgid "Activity" -msgstr "" - -#: app/templates/admin/reports/system-logs.hbs:6:4 -msgid "Mails" -msgstr "" - -#: app/templates/admin/sales.hbs:16:10 -msgid "By Events" -msgstr "" - -#: app/templates/admin/sales.hbs:19:10 -msgid "By Organizer" -msgstr "" - -#: app/templates/admin/sales.hbs:22:10 -msgid "By Location" -msgstr "" - -#: app/templates/admin/sales.hbs:25:10 -msgid "By Marketer" -msgstr "" - -#: app/templates/admin/sales.hbs:28:10 -msgid "Discounted events" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:3:33 -#: app/templates/admin/sales/index.hbs:2:31 -#: app/templates/admin/sales/locations.hbs:3:33 -#: app/templates/admin/sales/marketer.hbs:3:33 -#: app/templates/admin/sales/organizers.hbs:3:33 -msgid "Tickets Summary" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:14:14 -#: app/templates/components/forms/events/view/create-discount-code.hbs:3:28 -msgid "Discount Code" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:17:14 -msgid "Marketer Email" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:20:14 -#: app/templates/admin/sales/locations.hbs:11:77 -#: app/templates/admin/sales/marketer.hbs:11:77 -#: app/templates/admin/sales/organizers.hbs:14:14 -#: app/templates/admin/sales/revenue.hbs:19:14 -#: app/templates/events/view/tickets/index.hbs:124:146 -#: app/templates/my-tickets/upcoming.hbs:5:8 -msgid "Completed Orders" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:23:14 -#: app/templates/admin/sales/locations.hbs:12:76 -#: app/templates/admin/sales/organizers.hbs:17:14 -#: app/templates/events/view/tickets/index.hbs:125:145 -msgid "Placed Orders" -msgstr "" - -#: app/templates/admin/sales/discounted-events.hbs:26:14 -#: app/templates/admin/sales/locations.hbs:13:78 -#: app/templates/admin/sales/organizers.hbs:20:14 -#: app/templates/events/view/tickets/index.hbs:126:147 -msgid "Pending Orders" -msgstr "" - -#: app/templates/admin/sales/marketer.hbs:10:28 -msgid "Marketers" -msgstr "" - -#: app/templates/admin/sales/marketer.hbs:15:38 -msgid "Sales (discounted)" -msgstr "" - -#: app/templates/admin/sales/marketer.hbs:16:38 -msgid "Discounted amount" -msgstr "" - -#: app/templates/admin/sales/organizers.hbs:51:18 -#: app/templates/components/ui-table/cell/admin/reports/system-logs/notification-logs/cell-for.hbs:4:2 -msgid "No Name Provided" -msgstr "" - -#: app/templates/admin/sales/revenue.hbs:4:6 -msgid "Revenue Summary" -msgstr "" - -#: app/templates/admin/sales/revenue.hbs:16:14 -msgid "Event Date" -msgstr "" - -#: app/templates/admin/sales/revenue.hbs:27:14 -msgid "Fee" -msgstr "" - -#: app/templates/admin/sales/revenue.hbs:49:49 -msgid "Max." -msgstr "" - -#: app/templates/admin/settings.hbs:18:10 -msgid "Payment Gateways" -msgstr "" - -#: app/templates/admin/users.hbs:7:12 -msgid "All Users" -msgstr "" - -#: app/templates/admin/users.hbs:10:12 -msgid "Active Users" -msgstr "" - -#: app/templates/admin/users.hbs:13:12 -msgid "Inactive Users" -msgstr "" - -#: app/templates/admin/users.hbs:16:12 -msgid "Deleted Users" -msgstr "" - -#: app/templates/admin/users/view/account.hbs:7:10 -msgid "Profile Info" -msgstr "" - -#: app/templates/admin/users/view/sessions.hbs:2:24 -#: app/templates/components/nav-bar.hbs:34:61 -#: app/templates/components/side-bar.hbs:18:53 -#: app/templates/my-sessions.hbs:3:24 -msgid "My Sessions" -msgstr "" - -#: app/templates/admin/users/view/sessions.hbs:8:12 -#: app/templates/my-sessions.hbs:9:12 -msgid "Upcoming Sessions" -msgstr "" - -#: app/templates/admin/users/view/sessions.hbs:11:12 -#: app/templates/my-sessions.hbs:12:12 -msgid "Past Sessions" -msgstr "" - -#: app/templates/admin/users/view/sessions/list.hbs:7:38 -#: app/templates/my-sessions/list.hbs:7:38 -msgid "No session proposals found for the events" -msgstr "" - -#: app/templates/admin/users/view/tickets.hbs:8:12 -#: app/templates/index.hbs:13:29 app/templates/my-tickets.hbs:9:10 -msgid "Upcoming Events" -msgstr "" - -#: app/templates/admin/users/view/tickets.hbs:11:12 -#: app/templates/my-tickets.hbs:12:10 -msgid "Past Events" -msgstr "" - -#: app/templates/admin/users/view/tickets/list.hbs:8:38 -msgid "No tickets found for this user" -msgstr "" - -#: app/templates/attendee-app.hbs:17:4 -msgid "Open Event Attendee App" -msgstr "" - -#: app/templates/attendee-app.hbs:41:66 -msgid "Android Attendee App" -msgstr "" - -#: app/templates/attendee-app.hbs:46:10 -msgid "Get Your Next Experience of Open Event" -msgstr "" - -#: app/templates/attendee-app.hbs:51:12 -msgid "Get More" -msgstr "" - -#: app/templates/attendee-app.hbs:54:12 -msgid "Check popular events on the go, unique, local, near you just for you" -msgstr "" - -#: app/templates/attendee-app.hbs:59:34 -msgid "Know More" -msgstr "" - -#: app/templates/attendee-app.hbs:61:12 -msgid "Check all event related information on the go and get all relevant details about the speakers" -msgstr "" - -#: app/templates/attendee-app.hbs:67:12 -msgid "Manage More" -msgstr "" - -#: app/templates/attendee-app.hbs:70:12 -msgid "Manage all you ticket details , event details on the go with your phone" -msgstr "" - -#: app/templates/attendee-app.hbs:76:12 -msgid "Go Digital" -msgstr "" - -#: app/templates/attendee-app.hbs:79:12 -msgid "Show your ticket details , Session Pass on your phone using QR code and get in" -msgstr "" - -#: app/templates/attendee-app.hbs:85:12 -msgid "Go Hassle-free" -msgstr "" - -#: app/templates/attendee-app.hbs:88:12 -msgid "Pay with your phone , Register for nearby events with your phone, hasslefree , easily and conveniently" -msgstr "" - -#: app/templates/attendee-app.hbs:99:2 -msgid "Please Check-Out our Organizer App" -msgstr "" - -#: app/templates/attendee-app.hbs:100:53 app/templates/organizer-app.hbs:100:78 -msgid "Here" -msgstr "" - -#: app/templates/components/account/application-section.hbs:1:4 -msgid "Connect with Facebook" -msgstr "" - -#: app/templates/components/account/contact-info-section.hbs:3:28 -#: app/templates/components/event-invoice/billing-info.hbs:17:16 -#: app/templates/components/event-invoice/billing-info.hbs:36:16 -#: app/templates/components/event-invoice/payee-info.hbs:16:8 -#: app/templates/components/forms/admin/settings/billing.hbs:41:52 -#: app/templates/components/forms/orders/order-form.hbs:39:44 -#: app/templates/components/forms/register-form.hbs:15:57 -#: app/templates/components/forms/user-profile-form.hbs:47:32 -#: app/templates/components/orders/ticket-holder.hbs:20:8 -msgid "Email" -msgstr "" - -#: app/templates/components/account/contact-info-section.hbs:7:28 -#: app/templates/components/event-invoice/billing-info.hbs:14:16 -#: app/templates/components/event-invoice/billing-info.hbs:33:16 -#: app/templates/components/forms/admin/settings/billing.hbs:37:35 -#: app/templates/components/forms/user-payment-info-form.hbs:23:23 -#: app/templates/components/forms/user-profile-form.hbs:54:31 -msgid "Phone" -msgstr "" - -#: app/templates/components/account/danger-zone.hbs:5:8 -#: app/templates/components/account/danger-zone.hbs:22:8 -msgid "Delete Your Account" -msgstr "" - -#: app/templates/components/account/danger-zone.hbs:9:10 -msgid "" -"All user data will be deleted. Your user data will be entirely erased and any data that will stay \n" -"in the system for accounting purposes will be anonymised and there will be no link to any of your personal information. \n" -"Once you delete this account, you will have no longer access to the system." -msgstr "" - -#: app/templates/components/account/danger-zone.hbs:13:10 -msgid "" -"Your account currently cannot be deleted as active events and/or orders are associated with it. \n" -"Before you can delete your account you must transfer the ownership of your event(s) to another organizer or cancel your event(s). \n" -"If you have ticket orders stored in the system, please cancel your orders first too." -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:5:8 -msgid "Email Updates are" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:16:8 -msgid "Updates about events" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:30:12 -msgid "On" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:32:12 -msgid "Off" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:42:10 -msgid "New Paper is Submitted to your Event" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:50:10 -msgid "Change in Schedule of Sessions in your Event" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:58:10 -msgid "Reminder for Next Event" -msgstr "" - -#: app/templates/components/account/email-preferences-section.hbs:67:34 -msgid "No events have been created by the user" -msgstr "" - -#: app/templates/components/account/password-section.hbs:4:6 -#: app/templates/components/account/password-section.hbs:7:102 -msgid "Current Password" -msgstr "" - -#: app/templates/components/account/password-section.hbs:17:6 -#: app/templates/components/account/password-section.hbs:20:94 -msgid "New Password" -msgstr "" - -#: app/templates/components/account/password-section.hbs:30:6 -#: app/templates/components/account/password-section.hbs:33:100 -msgid "Repeat Password" -msgstr "" - -#: app/templates/components/create-session-message.hbs:6:6 -msgid "Your Speaker Details have been saved, you can now submit a proposal by clicking Submit proposal!" -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:2:55 -msgid "Forbidden" -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:4:2 -msgid "Oops, you don't have the permission" -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:5:2 -msgid "to access this page" -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:8:2 -#: app/templates/components/errors/not-found.hbs:5:2 -#: app/templates/components/errors/server-error.hbs:9:2 -msgid "You may want to head back to the home page." -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:9:2 -msgid "If you think you shouldn't be seeing this, please contact the administrator." -msgstr "" - -#: app/templates/components/errors/forbidden-error.hbs:12:64 -#: app/templates/components/errors/generic-error.hbs:9:64 -#: app/templates/components/errors/not-found.hbs:9:64 -#: app/templates/components/errors/server-error.hbs:13:64 -msgid "Go Back Home" -msgstr "" - -#: app/templates/components/errors/generic-error.hbs:3:35 -msgid "Oops, the page you were trying" -msgstr "" - -#: app/templates/components/errors/generic-error.hbs:3:78 -msgid "to access" -msgstr "" - -#: app/templates/components/errors/generic-error.hbs:3:100 -msgid "has caused an error." -msgstr "" - -#: app/templates/components/errors/generic-error.hbs:5:2 -msgid "This, may or may not be a server issue. We are looking into it. You may want to head back to the home page." -msgstr "" - -#: app/templates/components/errors/generic-error.hbs:6:2 -msgid "Please try visiting after some time." -msgstr "" - -#: app/templates/components/errors/not-found.hbs:2:55 -msgid "Not Found" -msgstr "" - -#: app/templates/components/errors/not-found.hbs:3:35 -#: app/templates/components/errors/server-error.hbs:4:2 -msgid "Oops, the page you are" -msgstr "" - -#: app/templates/components/errors/not-found.hbs:3:70 -msgid "looking for does not" -msgstr "" - -#: app/templates/components/errors/not-found.hbs:3:103 -msgid "exist" -msgstr "" - -#: app/templates/components/errors/not-found.hbs:6:2 -#: app/templates/components/errors/server-error.hbs:10:2 -msgid "If you think something is broken, try again." -msgstr "" - -#: app/templates/components/errors/server-error.hbs:2:55 -msgid "Internal Server Error" -msgstr "" - -#: app/templates/components/errors/server-error.hbs:5:2 -msgid "looking for caused an error" -msgstr "" - -#: app/templates/components/errors/server-error.hbs:6:2 -msgid "on our servers." -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:8:16 -#: app/templates/components/event-invoice/event-info.hbs:15:12 -#: app/templates/components/orders/event-info.hbs:17:12 -msgid "From" -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:11:16 -#: app/templates/components/forms/admin/settings/billing.hbs:69:47 -#: app/templates/components/forms/orders/attendee-list.hbs:47:18 -#: app/templates/components/forms/user-payment-info-form.hbs:9:25 -#: app/templates/components/widgets/forms/billing-info.hbs:2:40 -msgid "Company" -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:20:16 -#: app/templates/components/event-invoice/billing-info.hbs:42:16 -#: app/templates/components/forms/admin/settings/billing.hbs:84:50 -#: app/templates/components/forms/user-payment-info-form.hbs:37:21 -#: app/templates/components/widgets/forms/billing-info.hbs:36:40 -#: app/templates/components/widgets/forms/location-input.hbs:37:22 -msgid "Zip Code" -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:23:16 -#: app/templates/components/event-invoice/billing-info.hbs:45:16 -#: app/templates/components/forms/admin/settings/billing.hbs:49:28 -#: app/templates/components/forms/user-payment-info-form.hbs:58:12 -#: app/templates/components/widgets/forms/location-input.hbs:44:22 -msgid "Country" -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:30:16 -#: app/templates/components/event-invoice/event-info.hbs:17:12 -#: app/templates/components/orders/event-info.hbs:19:12 -#: app/templates/public.hbs:14:42 -msgid "To" -msgstr "" - -#: app/templates/components/event-invoice/billing-info.hbs:39:16 -msgid "Billing Address" -msgstr "" - -#: app/templates/components/event-invoice/event-info.hbs:5:8 -#: app/templates/components/orders/event-info.hbs:6:10 -msgid "Event Information" -msgstr "" - -#: app/templates/components/event-invoice/event-info.hbs:10:27 -#: app/templates/components/orders/event-info.hbs:12:27 -msgid "When & Where" -msgstr "" - -#: app/templates/components/event-invoice/event-info.hbs:13:12 -#: app/templates/components/orders/event-info.hbs:15:12 -msgid "At" -msgstr "" - -#: app/templates/components/event-invoice/event-info.hbs:20:14 -#: app/templates/components/orders/event-info.hbs:22:14 -msgid "Organized By" -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:8:8 -msgid "Your invoice payment completed successfully." -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:10:8 -msgid "Find all the details related to your invoice below." -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:15:27 -#: app/templates/event-invoice/review.hbs:10:35 -msgid "Invoice Details" -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:20:30 -#: app/templates/components/forms/wizard/basic-details-step.hbs:3:39 -#: app/templates/event-invoice/review.hbs:15:24 -msgid "Event Name" -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:21:30 -#: app/templates/event-invoice/review.hbs:18:24 -msgid "Date Issued" -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:22:30 -msgid "Date Completed" -msgstr "" - -#: app/templates/components/event-invoice/invoice-summary.hbs:23:40 -msgid "Amount Payable" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:4:29 -#: app/templates/components/orders/ticket-holder.hbs:4:29 -msgid "Payee Information" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:8:8 -#: app/templates/components/forms/admin/content/pages-form.hbs:3:28 -#: app/templates/components/forms/user-profile-form.hbs:27:43 -#: app/templates/components/forms/wizard/sponsors-step.hbs:37:34 -#: app/templates/components/modals/add-system-role-modal.hbs:12:8 -#: app/templates/components/orders/ticket-holder.hbs:12:8 -msgid "Name" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:26:14 -#: app/templates/components/event-invoice/payee-info.hbs:46:33 -#: app/templates/components/orders/ticket-holder.hbs:30:14 -#: app/templates/components/orders/ticket-holder.hbs:50:33 -msgid "Payment Mode" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:35:20 -#: app/templates/components/orders/ticket-holder.hbs:39:20 -msgid "Transaction ID" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:54:38 -msgid "Card Type" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:66:38 -msgid "Card Number" -msgstr "" - -#: app/templates/components/event-invoice/payee-info.hbs:72:38 -msgid "Exp Date" -msgstr "" - -#: app/templates/components/events/event-import-section.hbs:4:42 -msgid "Select event source file to import" -msgstr "" - -#: app/templates/components/events/event-import-section.hbs:9:11 -msgid "Supported formats:" -msgstr "" - -#: app/templates/components/events/event-import-section.hbs:10:8 -msgid "Open Event compatible json package (.zip), PentabarfXML (.xml), iCalendar (.ical, .ics), XML Representation of iCalendar (.xcal)" -msgstr "" - -#: app/templates/components/events/event-import-section.hbs:13:88 -msgid "Import Event" -msgstr "" - -#: app/templates/components/events/imports-history-section.hbs:2:33 -msgid "Imported Events" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:3:4 -msgid "Access event information via REST API" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:10:48 -msgid "Basic Event Details" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:16:39 -msgid "Microlocations" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:19:39 -#: app/templates/public.hbs:49:16 -msgid "Tracks" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:32:2 -msgid "You can make a GET request to the following endpoint to access the selected information" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:34:30 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:156:40 -#: app/templates/components/modals/event-share-modal.hbs:27:17 -msgid "Link copied to clipboard" -msgstr "" - -#: app/templates/components/events/view/export/api-response.hbs:42:2 -msgid "Response" -msgstr "" - -#: app/templates/components/events/view/export/download-common.hbs:3:4 -msgid "Download Event as {{file}}" -msgstr "" - -#: app/templates/components/events/view/export/download-common.hbs:6:4 -msgid "Once the event is live and the schedule is published, {{file}} version of the schedule will be available at:" -msgstr "" - -#: app/templates/components/events/view/export/download-common.hbs:12:66 -msgid "Alternatively, you can download the {{file}} here" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:3:4 -msgid "Export and Download Event as Zip" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:5:6 -msgid "Select the media files you want in the zip" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:13:39 -msgid "Image" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:19:39 -msgid "Audio" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:22:39 -msgid "Document" -msgstr "" - -#: app/templates/components/events/view/export/download-zip.hbs:26:6 -msgid "Start" -msgstr "" - -#: app/templates/components/events/view/overview/event-apps.hbs:2:22 -msgid "Apps" -msgstr "" - -#: app/templates/components/events/view/overview/event-apps.hbs:7:32 -msgid "Generate Android App" -msgstr "" - -#: app/templates/components/events/view/overview/event-apps.hbs:10:32 -msgid "Generate Web App" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:2:22 -msgid "Event setup checklist" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:15:14 -msgid "Basic information including title, date, venue, ticketing" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:28:12 -#: app/templates/components/forms/user-payment-info-form.hbs:89:32 -msgid "Additional Information" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:30:14 -msgid "Links, social media, privacy, code of conduct" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:45:14 -msgid "Information to be collected from attendees" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:60:14 -msgid "Details and logos of sponsors" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:73:12 -msgid "Session, Tracks & Microlocations" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:75:14 -msgid "Tracks details and colors, session lengths, room locations" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:88:12 -msgid "Call For Speakers" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:90:14 -msgid "Call for speakers announcement and dates" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:103:12 -msgid "Session & Speaker forms customization" -msgstr "" - -#: app/templates/components/events/view/overview/event-setup-checklist.hbs:105:14 -msgid "Customize the session and speaker registration forms" -msgstr "" - -#: app/templates/components/events/view/overview/event-sponsors.hbs:5:4 -msgid "Add Sponsors" -msgstr "" - -#: app/templates/components/events/view/overview/event-sponsors.hbs:7:22 -msgid "Event sponsors" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:5:24 -msgid "Summary" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:9:12 -msgid "Total tickets sold" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:13:12 -msgid "No. of orders" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:17:12 -msgid "Sales (amount)" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:22:24 -msgid "Details" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:27:12 -msgid "Sold" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:28:12 -#: app/templates/components/public/ticket-list.hbs:124:24 -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:3:22 -msgid "Total" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:29:12 -msgid "Available" -msgstr "" - -#: app/templates/components/events/view/overview/event-tickets.hbs:42:10 -msgid "There are no tickets for this event" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:2:22 -msgid "General info" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:7:6 -msgid "Your event is live at" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:9:6 -msgid "Your event is not live yet. Make it live now" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:17:20 -msgid "No. of Revisions" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:33:67 -msgid "Click to add location." -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:38:20 -msgid "Start time" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:42:20 -msgid "End time" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:46:20 -msgid "Session types" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:53:12 -msgid "No Session Type present." -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:53:105 -#: app/templates/components/events/view/overview/general-info.hbs:65:114 -msgid "Click here to add" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:58:20 -msgid "Links and Social Media" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:65:12 -msgid "No social links present." -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:70:20 -msgid "No. of Speakers" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:77:14 -#: app/templates/components/events/view/overview/general-info.hbs:91:14 -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:5:22 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:5:22 -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:5:22 -#: app/templates/events/view/speakers.hbs:17:14 -msgid "Confirmed" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:79:12 -#: app/templates/components/events/view/overview/general-info.hbs:93:12 -msgid "Sessions and Speakers not enabled." -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:84:20 -msgid "No. of Sessions" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:87:12 -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:3:22 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:3:22 -msgid "Submitted" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:98:20 -msgid "No. of Sponsors" -msgstr "" - -#: app/templates/components/events/view/overview/general-info.hbs:99:81 -msgid "No Sponsor added yet." -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:2:22 -msgid "Team Members" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:4:77 -msgid "Add People" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:14:103 -msgid "Invited" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:20:12 -msgid "User(Email)" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:21:12 -msgid "Role" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:52:45 -msgid "Are you sure you would like to cancel this invite?" -msgstr "" - -#: app/templates/components/events/view/overview/manage-roles.hbs:62:10 -msgid "No records to show" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:7:19 -msgid "Enter Location" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:15:8 -msgid "Date" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:33:65 -#: app/templates/components/forms/wizard/basic-details-step.hbs:57:47 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:132:51 -#: app/templates/components/widgets/forms/ticket-input.hbs:131:58 -msgid "Starts" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:41:63 -#: app/templates/components/forms/wizard/basic-details-step.hbs:75:45 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:140:49 -#: app/templates/components/widgets/forms/ticket-input.hbs:149:56 -msgid "Ends" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:62:8 -msgid "Categories" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:67:10 -msgid "All Categories" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:99:8 -#: app/templates/components/forms/wizard/basic-details-step.hbs:591:11 -msgid "Event Type" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:103:17 -msgid "All Types" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:127:8 -#: app/templates/components/orders/order-summary.hbs:46:44 -#: app/templates/components/orders/order-summary.hbs:54:34 -msgid "Ticket Type" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:134:23 -#: app/templates/components/order-card.hbs:41:12 -msgid "Free" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:156:6 -msgid "Event Call For Speakers" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:169:21 -#: app/templates/components/public/call-for-speakers.hbs:10:43 -msgid "Closed" -msgstr "" - -#: app/templates/components/explore/side-bar.hbs:180:98 -#: app/templates/components/quick-filter.hbs:38:117 -#: app/templates/components/quick-filter.hbs:44:117 -msgid "Clear Filters" -msgstr "" - -#: app/templates/components/footer-main.hbs:5:29 -msgid "Use" -msgstr "" - -#: app/templates/components/footer-main.hbs:6:102 -msgid "How it Works" -msgstr "" - -#: app/templates/components/footer-main.hbs:7:54 -#: app/templates/components/nav-bar.hbs:11:24 -#: app/templates/components/side-bar.hbs:28:49 -msgid "Pricing" -msgstr "" - -#: app/templates/components/footer-main.hbs:8:84 -#: app/templates/components/footer-main.hbs:45:38 -#: app/templates/components/forms/admin/content/social-links-form.hbs:3:11 -msgid "Blog" -msgstr "" - -#: app/templates/components/footer-main.hbs:13:29 -msgid "Plan Events" -msgstr "" - -#: app/templates/components/footer-main.hbs:15:10 -msgid "Online Registration" -msgstr "" - -#: app/templates/components/footer-main.hbs:18:10 -msgid "Sell Event Tickets" -msgstr "" - -#: app/templates/components/footer-main.hbs:21:10 -msgid "Event Management Software" -msgstr "" - -#: app/templates/components/footer-main.hbs:27:29 -msgid "Find Events" -msgstr "" - -#: app/templates/components/footer-main.hbs:29:10 -#: app/templates/components/nav-bar.hbs:15:24 -#: app/templates/components/side-bar.hbs:4:20 -msgid "Browse Events" -msgstr "" - -#: app/templates/components/footer-main.hbs:32:10 -msgid "Attendee App" -msgstr "" - -#: app/templates/components/footer-main.hbs:35:10 -msgid "Organizer App" -msgstr "" - -#: app/templates/components/footer-main.hbs:42:29 -msgid "Connect With Us" -msgstr "" - -#: app/templates/components/footer-main.hbs:50:44 -#: app/templates/components/forms/admin/content/social-links-form.hbs:17:11 -msgid "Facebook" -msgstr "" - -#: app/templates/components/footer-main.hbs:55:43 -#: app/templates/components/forms/admin/content/social-links-form.hbs:25:11 -msgid "Instagram" -msgstr "" - -#: app/templates/components/footer-main.hbs:60:41 -#: app/templates/components/forms/admin/content/social-links-form.hbs:9:11 -msgid "Twitter" -msgstr "" - -#: app/templates/components/footer-main.hbs:65:40 -#: app/templates/components/forms/admin/content/social-links-form.hbs:49:11 -msgid "GitHub" -msgstr "" - -#: app/templates/components/footer-main.hbs:70:41 -#: app/templates/components/forms/admin/content/social-links-form.hbs:41:11 -msgid "YouTube" -msgstr "" - -#: app/templates/components/footer-main.hbs:75:47 -msgid "Google Groups" -msgstr "" - -#: app/templates/components/footer-main.hbs:80:41 -#: app/templates/components/forms/admin/content/social-links-form.hbs:57:11 -msgid "Patreon" -msgstr "" - -#: app/templates/components/footer-main.hbs:85:40 -#: app/templates/components/forms/admin/content/social-links-form.hbs:65:11 -msgid "Gitter" -msgstr "" - -#: app/templates/components/footer-main.hbs:90:42 -#: app/templates/components/forms/admin/content/social-links-form.hbs:69:11 -msgid "Telegram" -msgstr "" - -#: app/templates/components/footer-main.hbs:100:27 -msgid "Copyright" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:4:75 -msgid "Page Name" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:7:28 -#: app/templates/components/forms/events/view/edit-session.hbs:3:11 -msgid "Title" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:8:77 -msgid "Title of the Page" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:11:28 -msgid "Path" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:12:73 -msgid "URL for the Page" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:15:11 -#: app/templates/components/forms/wizard/basic-details-step.hbs:115:29 -#: app/templates/components/forms/wizard/sponsors-step.hbs:67:17 -msgid "Description" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:19:28 -msgid "Place" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:23:32 -msgid "Select Page Place" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:25:45 -msgid "Event" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:26:46 -msgid "Footer" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:31:28 -#: app/templates/components/forms/admin/content/pages-form.hbs:32:93 -msgid "Position" -msgstr "" - -#: app/templates/components/forms/admin/content/pages-form.hbs:39:32 -msgid "Select Language" -msgstr "" - -#: app/templates/components/forms/admin/content/social-links-form.hbs:33:11 -msgid "Google Group" -msgstr "" - -#: app/templates/components/forms/admin/content/translation-form.hbs:19:61 -msgid "Upload" -msgstr "" - -#: app/templates/components/forms/admin/settings/analytics-form.hbs:3:4 -msgid "Google Analytics" -msgstr "" - -#: app/templates/components/forms/admin/settings/analytics-form.hbs:5:7 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:15:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:139:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:180:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:277:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:373:8 -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:17:6 -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:83:5 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:4:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:29:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:54:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:79:4 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:16:5 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:47:5 -msgid "See" -msgstr "" - -#: app/templates/components/forms/admin/settings/analytics-form.hbs:7:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:17:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:141:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:183:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:279:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:375:10 -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:19:8 -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:85:6 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:6:6 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:31:6 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:56:6 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:81:6 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:18:6 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:49:6 -#: app/templates/components/forms/wizard/basic-details-step.hbs:395:44 -#: app/templates/components/forms/wizard/basic-details-step.hbs:418:44 -#: app/templates/components/forms/wizard/basic-details-step.hbs:440:92 -#: app/templates/events/view/sessions.hbs:34:110 -#: app/templates/events/view/speakers.hbs:41:110 -msgid "here" -msgstr "" - -#: app/templates/components/forms/admin/settings/analytics-form.hbs:9:6 -msgid "on how to get this tracking ID." -msgstr "" - -#: app/templates/components/forms/admin/settings/analytics-form.hbs:14:6 -msgid "Tracking ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:3:4 -msgid "Invoice Handling" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:9:32 -msgid "Invoices Sent Out" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:11:41 -msgid "First of every month" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:12:41 -msgid "Second of every month" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:13:41 -msgid "Third of every month" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:20:32 -#: app/templates/components/forms/wizard/basic-details-step.hbs:105:34 -msgid "Select timezone" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:30:4 -msgid "Invoice Contact" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:33:41 -#: app/templates/components/forms/user-payment-info-form.hbs:16:29 -msgid "Contact Name" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:45:58 -msgid "Paypal Email" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:53:32 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:55:32 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:66:36 -#: app/templates/components/forms/user-payment-info-form.hbs:70:32 -#: app/templates/components/forms/wizard/basic-details-step.hbs:283:34 -#: app/templates/components/forms/wizard/basic-details-step.hbs:295:38 -#: app/templates/components/modals/tax-info-modal.hbs:11:34 -#: app/templates/components/widgets/forms/billing-info.hbs:43:26 -#: app/templates/components/widgets/forms/billing-info.hbs:53:30 -msgid "Select country" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:65:37 -#: app/templates/components/modals/tax-info-modal.hbs:31:30 -msgid "Tax ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:73:54 -#: app/templates/components/forms/orders/attendee-list.hbs:58:18 -#: app/templates/components/forms/user-payment-info-form.hbs:30:25 -#: app/templates/components/public/event-map.hbs:18:6 -#: app/templates/components/widgets/forms/billing-info.hbs:16:40 -msgid "Address" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:76:51 -#: app/templates/components/forms/user-payment-info-form.hbs:44:22 -#: app/templates/components/modals/tax-info-modal.hbs:55:13 -#: app/templates/components/widgets/forms/billing-info.hbs:22:37 -#: app/templates/components/widgets/forms/location-input.hbs:23:22 -msgid "City" -msgstr "" - -#: app/templates/components/forms/admin/settings/billing.hbs:80:35 -#: app/templates/components/forms/user-payment-info-form.hbs:51:23 -#: app/templates/components/modals/tax-info-modal.hbs:59:13 -#: app/templates/components/widgets/forms/location-input.hbs:30:22 -msgid "State" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:2:24 -msgid "Event Images" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:3:24 -msgid "Large Size" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:6:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:29:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:54:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:73:13 -msgid "Width (in px)" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:10:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:33:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:58:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:77:13 -msgid "Height (in px)" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:14:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:37:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:62:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:91:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:107:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:123:13 -msgid "Quality (in %)" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:19:23 -msgid "Standard aspect ratio is 13:5. Tick to maintain aspect ratio." -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:21:2 -msgid "Standard Size of the available area is 1300px X 500px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:22:5 -#: app/templates/components/forms/admin/settings/images-form.hbs:45:5 -#: app/templates/components/forms/admin/settings/images-form.hbs:96:5 -#: app/templates/components/forms/admin/settings/images-form.hbs:112:5 -#: app/templates/components/forms/admin/settings/images-form.hbs:128:5 -msgid "Found in :" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:24:22 -msgid "Background Header Image in Public Event Page" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:26:24 -#: app/templates/components/forms/admin/settings/images-form.hbs:84:24 -msgid "Thumbnail Size" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:42:23 -#: app/templates/components/forms/admin/settings/images-form.hbs:67:23 -msgid "Standard aspect ratio is 5:2. Tick to maintain aspect ratio." -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:44:2 -#: app/templates/components/forms/admin/settings/images-form.hbs:81:2 -msgid "Standard Size of the available area is 500px X 200px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:47:22 -msgid "Home Page Event Images" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:48:22 -msgid "My Session Page Event Images" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:49:22 -msgid "My Ticket Page Event Images" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:51:24 -#: app/templates/components/forms/admin/settings/images-form.hbs:116:24 -msgid "Icon Size" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:69:2 -msgid "Standard Size of the available area is 75px X 30px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:70:24 -msgid "Logo Size (Event Wizard)" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:83:24 -msgid "Profile/Speaker Images" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:87:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:103:13 -#: app/templates/components/forms/admin/settings/images-form.hbs:119:13 -msgid "Width & Height(in px)" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:95:2 -msgid "Standard Size of the available area is 150px X 150px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:98:22 -msgid "Event Public Page" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:100:24 -msgid "Small Size" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:111:2 -msgid "Standard Size of the available area is 50px X 50px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:114:22 -msgid "Speaker Tab in Event Dashboard" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:127:2 -msgid "Standard Size of the available area is 35px X 35px" -msgstr "" - -#: app/templates/components/forms/admin/settings/images-form.hbs:130:22 -msgid "Top Bar Right Corner" -msgstr "" - -#: app/templates/components/forms/admin/settings/microservices-form.hbs:3:4 -msgid "Android App Generator" -msgstr "" - -#: app/templates/components/forms/admin/settings/microservices-form.hbs:7:6 -#: app/templates/components/forms/admin/settings/microservices-form.hbs:16:6 -msgid "API Server" -msgstr "" - -#: app/templates/components/forms/admin/settings/microservices-form.hbs:12:4 -msgid "Web App Generator" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:4:6 -msgid "Enable Stripe" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:13:6 -msgid "Stripe Keys" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:19:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:143:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:185:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:281:8 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:377:8 -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:21:6 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:20:4 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:51:4 -msgid "on how to obtain these keys." -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:23:6 -msgid "Stripe Integration Mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:27:15 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:289:15 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:385:15 -msgid "Test mode - Used during development and testing" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:36:10 -msgid "Client Test ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:40:21 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:206:21 -msgid "This client id will be used for testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:49:10 -msgid "Secret Test Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:53:21 -msgid "This secret key will be used for testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:62:10 -msgid "Publishable Test Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:66:21 -msgid "This publishable key will be used for testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:77:15 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:229:15 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:325:15 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:421:15 -msgid "Live mode - Used during production" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:86:10 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:13:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:38:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:88:4 -msgid "Client ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:90:21 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:242:21 -msgid "This client id will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:99:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:148:8 -msgid "Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:103:21 -msgid "This Secret Key will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:112:10 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:157:8 -msgid "Publishable Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:116:21 -msgid "This Publishable Key will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:128:6 -msgid "Enable AliPay" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:137:6 -msgid "AliPay Keys(Stripe Sources)" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:169:6 -msgid "Enable PayPal" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:178:6 -msgid "PayPal Credentials" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:189:6 -msgid "PayPal Integration Mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:193:15 -msgid "Sandbox mode - Used during development and testing" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:202:10 -msgid "Paypal Sandbox Client Id" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:215:10 -msgid "Paypal Sandbox Secret Token" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:219:21 -msgid "This secret token will be used during testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:238:10 -msgid "Paypal Client Id" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:251:10 -msgid "Paypal Secret Token" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:255:21 -msgid "This secret tocken will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:266:6 -msgid "Enable Omise" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:275:6 -msgid "Omise Credentials" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:285:6 -msgid "Omise Integration Mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:298:10 -msgid "Omise Test Public Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:302:21 -msgid "This public key will be used for testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:311:10 -msgid "Omise Test Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:315:21 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:411:21 -msgid "This secret key will be used during testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:334:10 -msgid "Omise Live Public Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:338:21 -msgid "This public key will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:347:10 -msgid "Omise Live Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:351:21 -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:447:21 -msgid "This secret key will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:362:6 -msgid "Enable PayTM" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:371:6 -msgid "PayTM Credentials" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:381:6 -msgid "PayTM Integration Mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:394:10 -msgid "PayTM Test Merchant ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:398:21 -msgid "This Merchant ID will be used for testing mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:407:10 -msgid "PayTM Test Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:430:10 -msgid "PayTM Live Merchant ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:434:21 -msgid "This Merchant ID will be used during live (production) mode" -msgstr "" - -#: app/templates/components/forms/admin/settings/payment-gateway-form.hbs:443:10 -msgid "PayTM Live Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:3:4 -msgid "App Environment" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:5:6 -msgid "Where is the application running ?" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:9:20 -msgid "Development" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:12:20 -msgid "Staging" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:15:20 -msgid "Production" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:18:4 -#: app/templates/components/forms/admin/settings/system-form.hbs:25:6 -msgid "App Name" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:20:6 -msgid "The name of your deployment. This will be used throughout this application." -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:31:6 -msgid "Tagline" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:36:4 -msgid "API server details" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:38:6 -msgid "The URL of the API that this frontend will make use of as the backend." -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:43:6 -msgid "API Url" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:49:4 -#: app/templates/components/forms/admin/settings/system-form.hbs:58:11 -msgid "Cookie Policy" -msgstr "" - -#: app/templates/components/forms/admin/settings/system-form.hbs:53:6 -msgid "Cookie Policy URL" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:2:2 -msgid "Captcha Options" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:4:4 -msgid "Captcha settings for sensitive actions in app." -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:9:4 -msgid "Enable Google reCAPTCHA" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:15:4 -msgid "Google reCaptcha" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:26:6 -msgid "Google reCAPTCHA Site Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/captcha-form.hbs:32:6 -msgid "Google reCAPTCHA Secret Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:2:2 -msgid "Mail Settings" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:6:4 -msgid "From Email" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:12:4 -msgid "From Name" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:18:4 -msgid "Frontend Url" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:24:18 -msgid "Disable email" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:27:18 -msgid "SMTP" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:32:6 -msgid "Host" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:38:6 -msgid "Port" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:43:11 -msgid "Encryption" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:47:8 -msgid "Choose Encryption type" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:52:10 -msgid "TLS" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:55:10 -msgid "TLS (optional)" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:58:10 -msgid "SSL" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:61:10 -msgid "No Encryption" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:68:6 -msgid "Username" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:81:18 -msgid "Sendgrid API" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:87:4 -msgid "on how to get this token." -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings.hbs:93:6 -msgid "Sendgrid Token" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings/test-email-form.hbs:5:6 -msgid "Send Test Email" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings/test-email-form.hbs:10:42 -msgid "Recipient E-mail" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/mail-settings/test-email-form.hbs:12:12 -msgid "Test" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/order-expiry-form.hbs:2:2 -msgid "Order Expiry Time" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/order-expiry-form.hbs:4:4 -msgid "Set registration time limit for your order in minutes" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/order-expiry-form.hbs:8:26 -msgid "Registration Time Limit" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:2:2 -msgid "Google Tokens" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:8:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:33:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:58:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:83:4 -msgid "on how to obtain these tokens." -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:19:4 -msgid "Client secret" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:27:2 -msgid "Facebook Tokens" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:44:4 -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:94:4 -msgid "Client Secret" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:52:2 -msgid "Twitter Tokens" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:63:4 -msgid "Consumer ID" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:69:4 -msgid "Consumer Secret" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/social-media-token.hbs:77:2 -msgid "Instagram Tokens" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:2:2 -msgid "Storage" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:4:4 -msgid "Where to store data ?" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:8:18 -msgid "Local" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:10:5 -msgid "stored in" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:14:18 -msgid "Google Storage" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:26:6 -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:76:6 -msgid "Bucket name" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:32:6 -msgid "Interoperable access key" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:38:6 -msgid "Interoperable access secret" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:45:18 -msgid "Amazon S3" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:57:6 -msgid "Region" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:62:8 -msgid "Select S3 Region" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:82:6 -msgid "Key" -msgstr "" - -#: app/templates/components/forms/admin/settings/system/storage-option.hbs:88:6 -msgid "Secret" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:3:4 -msgid "Add Fee Settings for the event invoices" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:7:6 -msgid "Global Settings" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:13:10 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:103:10 -msgid "Service Fee" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:31:10 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:120:10 -msgid "Maximum Fee" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:48:6 -msgid "Country-Wise Settings" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:78:32 -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:88:36 -#: app/templates/components/forms/wizard/basic-details-step.hbs:307:34 -#: app/templates/components/forms/wizard/basic-details-step.hbs:318:38 -msgid "Select currency" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:136:23 -msgid "If you keep the maximum fee as 0, it would become unlimited. Kindly set the maximum fee to some value." -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:147:35 -msgid "Are you sure you would like to remove this event fee?" -msgstr "" - -#: app/templates/components/forms/admin/settings/ticket-fees-form.hbs:157:4 -msgid "Add New" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:3:28 -msgid "Access Code" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:10:28 -msgid "Number of Access Tickets" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:19:28 -#: app/templates/components/forms/events/view/create-discount-code.hbs:56:28 -msgid "Status" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:39:30 -msgid "Select Tickets applied to the access code" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:42:15 -#: app/templates/components/forms/events/view/create-discount-code.hbs:79:15 -msgid "Select all Ticket types" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:50:13 -msgid "No hidden tickets available for this event to select from" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:66:15 -#: app/templates/components/forms/events/view/create-discount-code.hbs:103:15 -msgid "Show more options" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:71:6 -msgid "Set the min and max quantity allowed to purchase per order(Optional)" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:74:17 -#: app/templates/components/forms/events/view/create-discount-code.hbs:112:17 -#: app/templates/components/widgets/forms/ticket-input.hbs:27:24 -msgid "Min" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:85:17 -#: app/templates/components/forms/events/view/create-discount-code.hbs:120:17 -#: app/templates/components/widgets/forms/ticket-input.hbs:35:24 -msgid "Max" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:94:6 -msgid "Validity Period(Optional)" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:97:17 -#: app/templates/components/forms/events/view/create-discount-code.hbs:130:17 -msgid "Valid from" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:109:17 -#: app/templates/components/forms/events/view/create-discount-code.hbs:143:17 -msgid "Expires on" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:123:13 -msgid "Access Link" -msgstr "" - -#: app/templates/components/forms/events/view/create-access-code.hbs:131:10 -#: app/templates/components/forms/events/view/create-discount-code.hbs:168:10 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:159:14 -#: app/templates/components/modals/event-share-modal.hbs:33:10 -msgid "Copy" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:10:28 -msgid "Enter Discount" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:30:13 -msgid "Percent (%)" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:48:28 -msgid "Number of Discount Tickets" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:76:30 -msgid "Select Ticket(s) applied to the discount code" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:87:13 -msgid "No event tickets to select from" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:109:11 -msgid "Set the min and max quantity allowed to purchase per order (Optional)" -msgstr "" - -#: app/templates/components/forms/events/view/create-discount-code.hbs:160:13 -msgid "Discount Link" -msgstr "" - -#: app/templates/components/forms/events/view/edit-session.hbs:7:11 -msgid "Short Abstract" -msgstr "" - -#: app/templates/components/forms/events/view/edit-session.hbs:11:11 -msgid "Comments" -msgstr "" - -#: app/templates/components/forms/events/view/edit-session.hbs:16:76 -#: app/templates/components/forms/session-speaker-form.hbs:46:21 -#: app/templates/components/forms/session-speaker-form.hbs:440:23 -msgid "File" -msgstr "" - -#: app/templates/components/forms/events/view/edit-session.hbs:16:108 -#: app/templates/components/forms/session-speaker-form.hbs:49:20 -#: app/templates/components/forms/session-speaker-form.hbs:443:22 -msgid "Select a file" -msgstr "" - -#: app/templates/components/forms/events/view/edit-session.hbs:19:4 -msgid "Save Session" -msgstr "" - -#: app/templates/components/forms/login-form.hbs:16:17 -msgid "You have been registered successfully. Please login to continue." -msgstr "" - -#: app/templates/components/forms/login-form.hbs:22:47 -#: app/templates/components/forms/reset-password-form.hbs:43:49 -msgid "Email ID" -msgstr "" - -#: app/templates/components/forms/login-form.hbs:42:75 -#: app/templates/components/forms/orders/guest-order-form.hbs:23:107 -msgid "Forgot your password ?" -msgstr "" - -#: app/templates/components/forms/login-form.hbs:59:10 -#: app/templates/components/forms/reset-password-form.hbs:54:73 -msgid "New to site? Create Account" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:4:29 -msgid "Attendee Information" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:9:8 -#: app/templates/components/forms/orders/order-form.hbs:47:8 -msgid "Ticket Holder's Information" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:15:19 -#: app/templates/components/forms/orders/order-form.hbs:60:17 -msgid "Ticket Holder" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:15:41 -#: app/templates/components/forms/orders/order-form.hbs:60:52 -msgid "-for-" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:41:12 -#: app/templates/components/forms/orders/order-form.hbs:151:10 -msgid "Billing Information" -msgstr "" - -#: app/templates/components/forms/orders/attendee-list.hbs:51:18 -#: app/templates/components/forms/user-payment-info-form.hbs:82:23 -#: app/templates/components/widgets/forms/billing-info.hbs:9:48 -msgid "Tax ID or Business ID" -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:7:24 -msgid "Please enter your email address to continue." -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:10:104 -msgid "Email Address" -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:17:31 -msgid "You have previously registered with this email address." -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:19:45 -msgid "Please enter your password to continue." -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:26:6 -msgid "Sign In" -msgstr "" - -#: app/templates/components/forms/orders/guest-order-form.hbs:30:6 -#: app/templates/events/view/tickets/add-order.hbs:24:10 -msgid "Continue" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:4:29 -msgid "Registration Information" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:12:10 -msgid "Please complete registration within" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:12:89 -msgid "minutes." -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:14:10 -msgid "After" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:15:10 -msgid "minutes, the reservation we're holding will be released to others." -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:22:8 -#: app/templates/components/orders/ticket-holder.hbs:9:8 -msgid "Ticket Buyer" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:25:48 -msgid "First Name" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:32:47 -msgid "Last Name" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:53:21 -msgid "Ticket holder is the same person as ticket buyer" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:95:44 -#: app/templates/components/forms/session-speaker-form.hbs:220:44 -#: app/templates/components/forms/session-speaker-form.hbs:342:42 -msgid "Select your gender" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:114:44 -msgid "Select your country" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:133:44 -msgid "Select your age group" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:156:21 -msgid "Enable Billing Information" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:168:10 -msgid "Payment Method" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:171:53 -msgid "Please choose your payment method" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:177:25 -msgid "Credit Card" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:190:25 -msgid "Paypal" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:201:25 -msgid "Paytm" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:212:25 -msgid "Omise" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:224:25 -msgid "AliPay" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:236:25 -msgid "Cheque" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:246:25 -msgid "Bank" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:256:25 -msgid "Onsite" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:279:8 -msgid "Acknowledgement" -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:282:8 -msgid "By clicking \"Pay Now\", I acknowledge that I have read and that I agree with all the terms of services and privacy policy of Open Event." -msgstr "" - -#: app/templates/components/forms/orders/order-form.hbs:286:60 -msgid "Proceed to Checkout" -msgstr "" - -#: app/templates/components/forms/register-form.hbs:32:130 -msgid "Re-enter Password" -msgstr "" - -#: app/templates/components/forms/register-form.hbs:47:6 -msgid "Already have an account? Login" -msgstr "" - -#: app/templates/components/forms/reset-password-form.hbs:5:31 -msgid "Forgot Password" -msgstr "" - -#: app/templates/components/forms/reset-password-form.hbs:33:113 -msgid "Confirm Password" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:5:8 -#: app/templates/components/forms/session-speaker-form.hbs:374:6 -msgid "Session details" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:37:21 -#: app/templates/components/forms/session-speaker-form.hbs:431:23 -#: app/templates/components/forms/wizard/basic-details-step.hbs:139:15 -#: app/templates/components/forms/wizard/basic-details-step.hbs:143:19 -#: app/templates/components/forms/wizard/sponsors-step.hbs:74:19 -msgid "Logo" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:40:20 -#: app/templates/components/forms/session-speaker-form.hbs:186:22 -#: app/templates/components/forms/session-speaker-form.hbs:304:20 -#: app/templates/components/forms/session-speaker-form.hbs:434:22 -msgid "Select an image" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:64:42 -#: app/templates/components/forms/session-speaker-form.hbs:458:44 -msgid "Select" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:101:6 -#: app/templates/components/forms/session-speaker-form.hbs:254:8 -msgid "Speaker details" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:104:6 -msgid "Choose from existing speaker(s)" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:112:8 -msgid "Select Speakers" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:126:44 -msgid "No speaker exists. Add a new speaker." -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:151:27 -#: app/templates/components/forms/session-speaker-form.hbs:269:25 -msgid "Do not require email for this speaker." -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:182:23 -#: app/templates/components/forms/session-speaker-form.hbs:300:21 -msgid "Speaker Image" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:188:26 -#: app/templates/components/forms/session-speaker-form.hbs:306:24 -msgid "We recommend using a 1:1 ratio image" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:377:6 -msgid "Choose from an existing session" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:385:8 -msgid "Select Session" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:398:44 -msgid "No session exists. Add a new session proposal." -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:408:15 -msgid "Add a new Proposal" -msgstr "" - -#: app/templates/components/forms/session-speaker-form.hbs:492:4 -#: app/templates/components/forms/user-payment-info-form.hbs:97:4 -msgid "Submit" -msgstr "" - -#: app/templates/components/forms/user-payment-info-form.hbs:6:4 -msgid "The information you provide here will be added to your invoices. Please ensure you have the correct information added here as it is not possible to regenerate invoices with different information at a later time." -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:9:17 -msgid "User Image" -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:12:16 -msgid "Select User Image" -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:15:20 -msgid "We recommend using at least a 1000x1000px (1:1 ratio) image" -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:34:48 -msgid "Family Name" -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:41:29 -msgid "Bio" -msgstr "" - -#: app/templates/components/forms/user-profile-form.hbs:61:8 -msgid "Update Changes" -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:13:57 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:11:63 -#: app/templates/components/forms/wizard/sponsors-step.hbs:13:55 -msgid "Turn off" -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:13:72 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:11:78 -#: app/templates/components/forms/wizard/sponsors-step.hbs:13:70 -msgid "Turn on" -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:21:8 -msgid "Information About Attendee Form" -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:24:8 -msgid "The attendee form by default collects the name and email of an attendee. You also have the option to collect additional information such as contact data, position, organization and more. This information will be available together with the ticket information in a CSV file in the ticket section of your event." -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:32:6 -msgid "Required Form Fields" -msgstr "" - -#: app/templates/components/forms/wizard/attendee-step.hbs:45:8 -msgid "Information to Collect" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:26:21 -msgid "Location is required to make this event live" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:33:34 -msgid "Show map on event page" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:43:16 -msgid "Live Stream URL" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:50:16 -msgid "Webinar URL" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:94:45 -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:148:49 -#: app/templates/components/widgets/forms/ticket-input.hbs:167:56 -msgid "Timezone" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:126:15 -msgid "Event Image" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:129:14 -msgid "Select Event Header Image" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:130:19 -msgid "Header Image" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:133:18 -msgid "We recommend using at least a 2160x1080px (2:1 ratio) image" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:142:14 -#: app/templates/components/forms/wizard/sponsors-step.hbs:77:18 -msgid "Select Logo" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:155:41 -msgid "Add Organizer or Group Information" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:161:30 -msgid "Organizer or Group Name" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:168:37 -msgid "About the Organizer or Group" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:176:30 -msgid "Ticketing System" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:182:40 -#: app/templates/components/widgets/forms/ticket-input.hbs:7:20 -#: app/templates/events/view/tickets/index.hbs:122:45 -msgid "Ticket Name" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:185:40 -#: app/templates/components/orders/order-summary.hbs:48:35 -#: app/templates/components/orders/order-summary.hbs:55:34 -#: app/templates/components/public/ticket-list.hbs:8:45 -#: app/templates/components/widgets/forms/ticket-input.hbs:17:22 -msgid "Price" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:188:40 -#: app/templates/components/orders/order-summary.hbs:52:33 -#: app/templates/components/orders/order-summary.hbs:59:34 -#: app/templates/components/public/ticket-list.hbs:9:29 -#: app/templates/components/widgets/forms/ticket-input.hbs:53:20 -msgid "Quantity" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:209:12 -msgid "You don't have any tickets added. Please add atleast one ticket to publish your event." -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:218:8 -msgid "Free Ticket" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:225:8 -msgid "Paid Ticket" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:239:8 -msgid "Donation Ticket" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:280:10 -msgid "Add Payment Details" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:334:10 -msgid "Choose payment methods" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:336:15 -msgid "Payment by PayPal" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:344:20 -msgid "YES, accept payment through PayPal" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:347:16 -msgid "Paypal accepts credit card, debit card and PayPal payments. To learn how it works" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:350:18 -msgid "click here" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:367:15 -msgid "Payment by Paytm" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:375:20 -msgid "YES, accept payment through Paytm" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:382:15 -msgid "Payment with AliPay" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:390:14 -msgid "Yes, accept payment through AliPay Gateway" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:393:16 -msgid "AliPay can accept Credit and Debit Cards , Net-Banking and AliPay. Find more details" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:401:17 -msgid "AliPay Gateway has been successfully activated" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:405:15 -msgid "Payment with Omise" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:413:14 -msgid "Yes, accept payment through Omise Gateway" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:416:16 -msgid "Omise can accept Credit and Debit Cards , Net-Banking and AliPay. Find more details" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:424:17 -msgid "Omise Gateway has been successfully activated" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:428:15 -msgid "Payment by Stripe" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:436:20 -msgid "YES, accept payment through Stripe" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:439:16 -msgid "Stripe accepts Visa, Master and Amex. Find out more about Stripe" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:449:16 -msgid "You have linked your Stripe account successfully. Click here to disconnect your account." -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:452:52 -msgid "Disconnect Stripe Account" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:454:38 -msgid "Connect to your Stripe account" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:456:49 -msgid "Connect with Stripe" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:461:13 -msgid "Offline Payments" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:469:12 -msgid "YES, accept payment by Cheque" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:476:12 -msgid "Enter you account name and other required details/instructions to ticket buyers" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:493:12 -msgid "YES, accept payment by Telegraphic Transfer(TT) / Bank Transfer" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:501:12 -msgid "Enter your bank details and other required details/instructions to ticket buyers" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:517:12 -msgid "YES, accept payment at the event (on site)" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:525:12 -msgid "Enter your payment instructions and other required details/instructions to ticket buyers" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:539:16 -msgid "Tax Information" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:546:18 -msgid "Company Name" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:562:16 -#: app/templates/components/forms/wizard/sponsors-step.hbs:30:12 -#: app/templates/components/widgets/forms/link-input.hbs:50:30 -msgid "Remove" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:569:12 -msgid "Add Tax Information" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:582:14 -msgid "Require Billing Information from Ticket Buyer" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:596:19 -msgid "Select Event Type" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:613:11 -msgid "Event Sub-topic" -msgstr "" - -#: app/templates/components/forms/wizard/basic-details-step.hbs:618:19 -msgid "Select Event Sub-Topic" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:4:11 -msgid "Links & Social Media" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:8:16 -msgid "Website" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:34:33 -#: app/templates/components/public/ticket-list.hbs:187:12 -msgid "Refund Policy" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:36:8 -msgid "Refunds to be processed by the organizer through payment provider. Refund payments to attendees cannot be made on the eventyay platform. Please go to your payment provider, make a refund and mark the ticket as refunded in the eventyay platform." -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:47:25 -msgid "Listing Privacy" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:52:18 -msgid "Public event" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:53:10 -msgid "list this event on this site and search engines" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:61:18 -msgid "Private event" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:62:10 -msgid "do not list this event publicly" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:75:39 -msgid "Add Code of Conduct" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:91:6 -msgid "License of Event Data & Content" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:96:20 -msgid "Licenses" -msgstr "" - -#: app/templates/components/forms/wizard/other-details-step.hbs:123:34 -msgid "Select License" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:26:8 -msgid "Sessions, Microlocations, Session Types" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:51:53 -msgid "Preview Text" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:60:30 -msgid "Microlocations or Virtual Online Rooms" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:83:30 -msgid "Session Types" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:116:42 -msgid "Enable Call For Speakers" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:123:10 -#: app/templates/index.hbs:26:29 -msgid "Call for speakers" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:127:15 -msgid "Announcement" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:153:15 -msgid "Private Link" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:164:10 -msgid "Share this link to get private submission independently of open/closed Call for Speakers at any time. (the link will be active once the event is saved)" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:168:29 -msgid "Privacy" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:173:22 -msgid "Public" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:174:14 -msgid "Display this publicly. Anybody will be able to submit a proposal within the dates chosen, once the event is published." -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:182:22 -msgid "Private" -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:183:14 -msgid "Do not display this publicly. Proposals can be submitted only using the private link." -msgstr "" - -#: app/templates/components/forms/wizard/sessions-speakers-step.hbs:193:8 -msgid "Customize registration form" -msgstr "" - -#: app/templates/components/forms/wizard/sponsors-step.hbs:26:8 -msgid "Sponsor" -msgstr "" - -#: app/templates/components/forms/wizard/sponsors-step.hbs:44:17 -msgid "Level" -msgstr "" - -#: app/templates/components/forms/wizard/sponsors-step.hbs:59:17 -msgid "URL" -msgstr "" - -#: app/templates/components/forms/wizard/sponsors-step.hbs:85:138 -msgid "Add another sponsor" -msgstr "" - -#: app/templates/components/forms/wizard/sponsors-step.hbs:85:164 -msgid "Add sponsor" -msgstr "" - -#: app/templates/components/modals/add-system-role-modal.hbs:3:4 -msgid "Add New System Role" -msgstr "" - -#: app/templates/components/modals/add-system-role-modal.hbs:5:4 -msgid "Edit System Role" -msgstr "" - -#: app/templates/components/modals/add-system-role-modal.hbs:14:82 -msgid "Enter Role name" -msgstr "" - -#: app/templates/components/modals/add-system-role-modal.hbs:40:6 -#: app/templates/components/modals/add-user-role-modal.hbs:2:2 -#: app/templates/components/modals/add-user-role-modal.hbs:40:4 -msgid "Add Role" -msgstr "" - -#: app/templates/components/modals/add-system-role-modal.hbs:42:6 -msgid "Edit Role" -msgstr "" - -#: app/templates/components/modals/add-user-role-modal.hbs:8:8 -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:11:8 -msgid "User Email" -msgstr "" - -#: app/templates/components/modals/add-user-role-modal.hbs:14:8 -msgid "User role" -msgstr "" - -#: app/templates/components/modals/add-user-role-modal.hbs:20:10 -msgid "Select a role" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:2:2 -msgid "Add New Event Sub Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:13:8 -msgid "New Event Sub Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:15:96 -msgid "Enter New Event Sub Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-sub-topic-modal.hbs:24:4 -msgid "Add Event Sub Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-topic-modal.hbs:2:2 -msgid "Add New Event Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-topic-modal.hbs:8:8 -msgid "New Event Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-topic-modal.hbs:10:73 -msgid "Enter New Event Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-topic-modal.hbs:19:4 -msgid "Add Event Topic" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-type-modal.hbs:2:2 -msgid "Add New Event Type" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-type-modal.hbs:8:8 -msgid "New Event Type" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-type-modal.hbs:10:72 -msgid "Enter New Event Type" -msgstr "" - -#: app/templates/components/modals/admin/content/new-event-type-modal.hbs:19:4 -msgid "Add Event Type" -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:3:2 -msgid "Update image" -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:13:17 -msgid "Update Image" -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:17:16 -msgid "Select Image" -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:19:20 -msgid "" -"For Cover Photos : 300x150px (2:1 ratio) image.\n" -"For Avatar Photos : 150x150px (1:1 ratio) image." -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:23:36 -msgid "Copyright information" -msgstr "" - -#: app/templates/components/modals/change-image-modal.hbs:31:36 -msgid "Origin information" -msgstr "" - -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:2:2 -msgid "You are transferring this event. This action cannot be undone." -msgstr "" - -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:4:4 -msgid "All the event rights will be transferred to another user" -msgstr "" - -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:16:25 -msgid "Please tick the box to agree and press TRANSFER" -msgstr "" - -#: app/templates/components/modals/confirm-event-transfer-modal.hbs:25:4 -msgid "Transfer" -msgstr "" - -#: app/templates/components/modals/confirm-modal.hbs:2:55 -msgid "Are you sure ?" -msgstr "" - -#: app/templates/components/modals/confirm-modal.hbs:11:69 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-is-mail-sent.hbs:5:4 -msgid "No" -msgstr "" - -#: app/templates/components/modals/confirm-modal.hbs:14:75 -#: app/templates/components/modals/publish-unpublish-modal.hbs:31:4 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-is-mail-sent.hbs:3:4 -msgid "Yes" -msgstr "" - -#: app/templates/components/modals/confirm-user-delete-modal.hbs:2:2 -msgid "You are deleting this account. This action cannot be undone." -msgstr "" - -#: app/templates/components/modals/confirm-user-delete-modal.hbs:4:4 -msgid "All user data will be deleted" -msgstr "" - -#: app/templates/components/modals/confirm-user-delete-modal.hbs:9:23 -msgid "Please tick the box to agree and press DELETE" -msgstr "" - -#: app/templates/components/modals/cropper-modal.hbs:3:2 -msgid "Crop Image" -msgstr "" - -#: app/templates/components/modals/cropper-modal.hbs:10:4 -msgid "Reset" -msgstr "" - -#: app/templates/components/modals/cropper-modal.hbs:13:4 -msgid "Looks good" -msgstr "" - -#: app/templates/components/modals/edit-user-modal.hbs:3:2 -msgid "Update System Roles" -msgstr "" - -#: app/templates/components/modals/edit-user-modal.hbs:7:26 -msgid "Provide admin access?" -msgstr "" - -#: app/templates/components/modals/edit-user-modal.hbs:14:26 -msgid "Custom system roles" -msgstr "" - -#: app/templates/components/modals/event-delete-modal.hbs:2:2 -msgid "Are you sure you would like to delete this event?" -msgstr "" - -#: app/templates/components/modals/event-delete-modal.hbs:4:4 -msgid "Deleting the event will delete all the data associated with it." -msgstr "" - -#: app/templates/components/modals/event-delete-modal.hbs:11:8 -msgid "Please enter the full name of the event to continue" -msgstr "" - -#: app/templates/components/modals/event-delete-modal.hbs:22:4 -#: app/templates/events/view/settings.hbs:30:10 -msgid "Delete Event" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:3:2 -msgid "Revisions" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:15:10 -msgid "Revisions by testuser" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:18:12 -msgid "days ago" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:23:10 -msgid "Current Revision" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:29:30 -msgid "Start Time" -msgstr "" - -#: app/templates/components/modals/event-revision.hbs:44:30 -msgid "End Time" -msgstr "" - -#: app/templates/components/modals/event-share-modal.hbs:3:2 -msgid "Share this event" -msgstr "" - -#: app/templates/components/modals/event-transfer-modal.hbs:2:2 -msgid "Are you sure you would like to transfer this event?" -msgstr "" - -#: app/templates/components/modals/event-transfer-modal.hbs:4:4 -msgid "Transferring the event to another user will lead to you losing all the owner rights." -msgstr "" - -#: app/templates/components/modals/event-transfer-modal.hbs:11:8 -msgid "Please enter the event-name to confirm that you want to transfer the event" -msgstr "" - -#: app/templates/components/modals/event-transfer-modal.hbs:22:4 -#: app/templates/components/modals/paytm-payment-options.hbs:30:4 -#: app/templates/components/modals/user-delete-modal.hbs:22:4 -msgid "Proceed" -msgstr "" - -#: app/templates/components/modals/login-signup-modal.hbs:4:4 -msgid "Login or Signup" -msgstr "" - -#: app/templates/components/modals/login-signup-modal.hbs:7:26 -msgid "Please Login or Signup before you can submit a proposal." -msgstr "" - -#: app/templates/components/modals/login-signup-modal.hbs:17:8 -msgid "Signup" -msgstr "" - -#: app/templates/components/modals/paytm-otp.hbs:2:2 -#: app/templates/components/modals/paytm-payment-options.hbs:2:2 -msgid "Amount to be paid:" -msgstr "" - -#: app/templates/components/modals/paytm-otp.hbs:6:2 -msgid "Enter OTP sent to mobile number" -msgstr "" - -#: app/templates/components/modals/paytm-payment-options.hbs:7:4 -msgid "Select an option to pay" -msgstr "" - -#: app/templates/components/modals/paytm-payment-options.hbs:12:6 -msgid "Paytm Wallet" -msgstr "" - -#: app/templates/components/modals/paytm-payment-options.hbs:17:10 -msgid "Please enter your Paytm registered Mobile Number to continue" -msgstr "" - -#: app/templates/components/modals/proposal-withdraw-modal.hbs:2:2 -msgid "Are you sure you would like to withdraw this proposal?" -msgstr "" - -#: app/templates/components/modals/proposal-withdraw-modal.hbs:4:4 -msgid "This action is final and cannot be reverted." -msgstr "" - -#: app/templates/components/modals/proposal-withdraw-modal.hbs:10:6 -msgid "Proceeding forward will withdraw the proposal titled:" -msgstr "" - -#: app/templates/components/modals/proposal-withdraw-modal.hbs:19:4 -#: app/templates/public/session/view.hbs:31:49 -msgid "Withdraw Proposal" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:4:2 -msgid "Are you sure?" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:6:2 -msgid "Incomplete event details" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:11:7 -msgid "This will unpublish your event. It will not be accessible to the public on the Internet anymore if you continue. The data of the event will still be available on your dashboard, but tickets, call for speakers or any other features will no longer be available online. Do you want to unpublish your event now?" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:14:6 -msgid "This will publish the event and the event will be visible on the Internet. Please confirm you want to publish your event." -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:16:6 -msgid "You need to add more details such as location and tickets to your event in order to publish it." -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:23:3 -msgid "Yes, Unpublish it" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:34:4 -msgid "Cancel, Do Not Publish it Now" -msgstr "" - -#: app/templates/components/modals/publish-unpublish-modal.hbs:38:4 -msgid "Okay" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:2:2 -msgid "Add tax information" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:7:30 -msgid "Choose country" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:23:30 -msgid "Tax name" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:27:30 -msgid "Tax rate" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:35:13 -msgid "Tax Invoices" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:39:18 -msgid "Send tax invoice to attendees" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:41:12 -msgid "" -"Tax Invoices are sent to your attendees when you select this feature.\n" -"Enter your registered business company name and address to be included on the tax invoice." -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:48:13 -msgid "Registered Company" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:52:13 -msgid "Business Address" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:63:13 -msgid "Zipcode" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:67:13 -msgid "Text for invoice footer (optional)" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:70:27 -msgid "Add or Include Tax Fee" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:74:31 -msgid "Add tax as separate fee on top of the price" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:80:35 -msgid "Include tax in ticket price" -msgstr "" - -#: app/templates/components/modals/tax-info-modal.hbs:91:4 -msgid "Update tax information" -msgstr "" - -#: app/templates/components/modals/user-delete-modal.hbs:2:2 -msgid "Are you sure you would like to delete your account?" -msgstr "" - -#: app/templates/components/modals/user-delete-modal.hbs:4:4 -msgid "Deleting the account will delete all the data associated with it." -msgstr "" - -#: app/templates/components/modals/user-delete-modal.hbs:11:8 -msgid "Please enter your Email ID to confirm that you want to delete the account" -msgstr "" - -#: app/templates/components/nav-bar.hbs:35:68 -#: app/templates/components/side-bar.hbs:19:60 -msgid "Manage Events" -msgstr "" - -#: app/templates/components/nav-bar.hbs:42:91 -#: app/templates/components/side-bar.hbs:26:62 -msgid "Logout" -msgstr "" - -#: app/templates/components/nav-bar.hbs:53:12 -#: app/templates/components/nav-bar.hbs:77:10 -#: app/templates/components/welcome-header.hbs:4:4 -#: app/templates/pricing.hbs:176:10 -msgid "Create Event" -msgstr "" - -#: app/templates/components/notification-dropdown.hbs:14:45 -msgid "Mark all as Read" -msgstr "" - -#: app/templates/components/notification-dropdown.hbs:36:44 -msgid "Go to notifications panel" -msgstr "" - -#: app/templates/components/notification-dropdown.hbs:40:8 -msgid "No new notifications" -msgstr "" - -#: app/templates/components/order-card.hbs:45:10 -msgid "order" -msgstr "" - -#: app/templates/components/order-card.hbs:49:16 -msgid "on" -msgstr "" - -#: app/templates/components/orders/event-info.hbs:26:38 -msgid "Go to event" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:7:12 -msgid "Success" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:14:12 -msgid "Your order completed successfully." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:16:12 -msgid "Your order placed successfully." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:19:10 -msgid "Find all the details related to your order below." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:31:10 -msgid "Your order has been placed successfully." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:33:10 -msgid "You can pay for your order to get tickets." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:39:27 -#: app/templates/events/view/tickets/index.hbs:14:4 -msgid "Order Summary" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:49:36 -#: app/templates/components/orders/order-summary.hbs:57:46 -msgid "Discount" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:50:46 -#: app/templates/components/orders/order-summary.hbs:63:45 -#: app/templates/components/public/ticket-list.hbs:10:46 -msgid "Subtotal" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:61:35 -#: app/templates/components/public/ticket-list.hbs:116:27 -msgid "Tax" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:99:20 -msgid "The price is inclusive of all taxes." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:104:22 -msgid "N/A" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:135:16 -#: app/templates/events/view/tickets/add-order.hbs:18:30 -msgid "Grand Total" -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:154:8 -msgid "Your order expired because you did not complete registration in time." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:156:8 -msgid "Please click on event link given on the right to order your tickets again." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:168:8 -msgid "Your order has been cancelled due to some unavoidable circumstances." -msgstr "" - -#: app/templates/components/orders/order-summary.hbs:170:8 -msgid "Please contact the event organizer for further details." -msgstr "" - -#: app/templates/components/orders/ticket-holder.hbs:84:12 -msgid "Paid via" -msgstr "" - -#: app/templates/components/orders/ticket-holder.hbs:91:12 -msgid "Cheque Details" -msgstr "" - -#: app/templates/components/orders/ticket-holder.hbs:99:12 -msgid "Onsite Instructions" -msgstr "" - -#: app/templates/components/orders/ticket-holder.hbs:107:12 -msgid "Bank Details" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:7:6 -msgid "Call for Speakers is open until" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:13:8 -msgid "Call for Speakers will open at" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:15:8 -msgid "Call for Speakers was closed at" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:23:23 -msgid "Submitted Sessions" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:41:5 -msgid "No session have been submitted" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:46:6 -msgid "Add Speaker Details" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:52:76 -msgid "Edit Speaker Details" -msgstr "" - -#: app/templates/components/public/call-for-speakers.hbs:58:4 -msgid "Add New Session" -msgstr "" - -#: app/templates/components/public/copyright-item.hbs:7:7 -msgid "This event is licenced under" -msgstr "" - -#: app/templates/components/public/event-map.hbs:3:8 -msgid "Getting Here" -msgstr "" - -#: app/templates/components/public/featured-speaker-list.hbs:1:4 -msgid "Featured Speakers" -msgstr "" - -#: app/templates/components/public/side-menu.hbs:5:8 -#: app/templates/components/public/side-menu.hbs:19:8 -msgid "Info" -msgstr "" - -#: app/templates/components/public/side-menu.hbs:39:8 -msgid "Calendar" -msgstr "" - -#: app/templates/components/public/side-menu.hbs:71:8 -#: app/templates/components/public/side-menu.hbs:75:8 -msgid "Getting here" -msgstr "" - -#: app/templates/components/public/social-links.hbs:6:79 -msgid "External event URL" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:43:54 -msgid "Enter Donation" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:64:22 -msgid "includes" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:113:26 -msgid "Sub-Total" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:141:28 -msgid "Promotional Code" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:163:57 -msgid "Enter promotional code" -msgstr "" - -#: app/templates/components/public/ticket-list.hbs:181:10 -msgid "Order Now" -msgstr "" - -#: app/templates/components/quick-filter.hbs:5:16 -msgid "Search for events" -msgstr "" - -#: app/templates/components/quick-filter.hbs:13:20 -msgid "Search location" -msgstr "" - -#: app/templates/components/quick-filter.hbs:26:32 -#: app/templates/components/quick-filter.hbs:28:49 -#: app/utils/dictionary/filters.js:4:13 -msgid "All Dates" -msgstr "" - -#: app/templates/components/quick-filter.hbs:29:45 -#: app/utils/dictionary/filters.js:8:13 -msgid "Today" -msgstr "" - -#: app/templates/components/quick-filter.hbs:30:48 -#: app/utils/dictionary/filters.js:12:13 -msgid "Tomorrow" -msgstr "" - -#: app/templates/components/quick-filter.hbs:31:49 -msgid "This Week" -msgstr "" - -#: app/templates/components/quick-filter.hbs:32:52 -#: app/utils/dictionary/filters.js:20:13 -msgid "This Weekend" -msgstr "" - -#: app/templates/components/quick-filter.hbs:33:49 -msgid "Next Week" -msgstr "" - -#: app/templates/components/quick-filter.hbs:34:50 -#: app/utils/dictionary/filters.js:28:13 -msgid "This Month" -msgstr "" - -#: app/templates/components/quick-filter.hbs:37:75 -#: app/templates/components/quick-filter.hbs:43:75 -msgid "Search" -msgstr "" - -#: app/templates/components/session-card.hbs:25:12 -msgid "Session Not Yet Scheduled" -msgstr "" - -#: app/templates/components/tables/utilities/page-size-input.hbs:2:2 -#: app/templates/components/ui-table-select.hbs:1:0 -msgid "Show" -msgstr "" - -#: app/templates/components/tables/utilities/page-size-input.hbs:14:2 -msgid "entries per page" -msgstr "" - -#: app/templates/components/tables/utilities/pagination.hbs:16:2 -#: app/templates/components/ui-table/simple-pagination.hbs:3:4 -msgid "Showing" -msgstr "" - -#: app/templates/components/tables/utilities/pagination.hbs:16:40 -#: app/templates/components/ui-table/simple-pagination.hbs:3:61 -msgid "of" -msgstr "" - -#: app/templates/components/tables/utilities/pagination.hbs:16:80 -#: app/templates/components/ui-table-select.hbs:16:0 -#: app/templates/components/ui-table/simple-pagination.hbs:3:104 -msgid "entries" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/sales/cell-action.hbs:1:20 -msgid "Resend invoice mail" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-actions.hbs:12:24 -#: app/templates/components/ui-table/cell/admin/users/cell-first-name.hbs:14:24 -#: app/templates/components/ui-table/cell/cell-buttons.hbs:13:22 -#: app/templates/components/ui-table/cell/cell-event.hbs:17:22 -msgid "Restore" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-actions.hbs:16:64 -#: app/templates/components/ui-table/cell/admin/users/cell-first-name.hbs:18:64 -msgid "Are you sure you would like to delete this user?" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:3:4 -msgid "User has administrative privileges, he has privileges of the following roles for all the events:" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:5:46 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:32:133 -#: app/templates/components/ui-table/cell/cell-roles.hbs:2:43 -#: app/templates/events/view/team/permissions.hbs:5:33 -msgid "Owner" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:11:47 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:46:68 -msgid "Co organizer" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:14:44 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:53:134 -msgid "Track Organizer" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:17:47 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:60:134 -msgid "Registrar" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:20:46 -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:67:133 -msgid "Moderator" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-event-roles.hbs:26:46 -msgid "Sales Admin" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-system-roles.hbs:14:6 -msgid "Verified User" -msgstr "" - -#: app/templates/components/ui-table/cell/admin/users/cell-user-links.hbs:12:78 -msgid "Accounts" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-code-buttons.hbs:5:20 -#: app/templates/components/ui-table/cell/events/view/tickets/access-codes/cell-actions.hbs:7:24 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:7:24 -msgid "Deactivate" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-event-date.hbs:12:6 -#: app/templates/components/ui-table/cell/cell-event-date.hbs:17:4 -msgid "No dates available." -msgstr "" - -#: app/templates/components/ui-table/cell/cell-event-general.hbs:11:22 -msgid "Event Dashboard" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-roles.hbs:7:38 -msgid "Co-organizers" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-roles.hbs:10:38 -msgid "Track-organizers" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-roles.hbs:13:38 -msgid "Registrars" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-roles.hbs:16:38 -msgid "Moderators" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-sessions-dashboard.hbs:10:2 -#: app/templates/components/ui-table/cell/cell-sessions.hbs:10:2 -msgid "No Session Information Added Yet" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-simple-buttons.hbs:2:20 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-session-title.hbs:4:20 -msgid "View Session" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-simple-buttons.hbs:8:20 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-session-title.hbs:12:20 -msgid "Delete Session" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-simple-buttons.hbs:8:68 -#: app/templates/components/ui-table/cell/events/view/sessions/cell-session-title.hbs:12:68 -msgid "Are you sure you would like to delete this Session?" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-speakers-dashboard.hbs:10:2 -msgid "No Speaker Added Yet" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-sponsor-options.hbs:5:60 -msgid "Are you sure you would like to delete this Sponsor?" -msgstr "" - -#: app/templates/components/ui-table/cell/cell-tickets.hbs:8:7 -msgid "No Ticket Information" -msgstr "" - -#: app/templates/components/ui-table/cell/events/cell-action.hbs:3:4 -msgid "Review and Pay" -msgstr "" - -#: app/templates/components/ui-table/cell/events/cell-action.hbs:7:4 -msgid "See Payment" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/sessions/cell-lock-session.hbs:2:20 -msgid "Unlock Session" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/sessions/cell-lock-session.hbs:6:20 -msgid "Lock Session" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/speakers/cell-buttons.hbs:14:60 -msgid "Are you sure you would like to delete this Speaker?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/speakers/speaker-mobile.hbs:4:2 -msgid "Not Provided" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/access-codes/cell-actions.hbs:11:24 -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:11:24 -msgid "Activate" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/access-codes/cell-actions.hbs:16:60 -msgid "Are you sure you would like to delete this Access Code?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/attendees/cell-action.hbs:3:140 -msgid "Check-Out" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/attendees/cell-action.hbs:5:143 -msgid "Check‑In" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/attendees/cell-order.hbs:4:4 -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:6:4 -msgid "by" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/attendees/cell-order.hbs:13:8 -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:14:8 -msgid "Payment via" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:7:68 -msgid "Are you sure you would like to deactivate this Discount Code?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:11:66 -msgid "Are you sure you would like to activate this Discount Code?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-actions.hbs:16:60 -msgid "Are you sure you would like to delete this Discount Code?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:6:86 -msgid "Name not provided" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:28:22 -msgid "Mark Completed" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:28:70 -msgid "Are you sure you would like to mark this Order as completed?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:33:22 -msgid "Cancel order" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:33:68 -msgid "Are you sure you would like to cancel this Order?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:38:22 -msgid "Delete order" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:38:68 -msgid "Are you sure you would like to delete this Order?" -msgstr "" - -#: app/templates/components/ui-table/cell/events/view/tickets/orders/cell-order.hbs:42:20 -msgid "Resend order confirmation" -msgstr "" - -#: app/templates/components/welcome-header.hbs:2:30 -msgid "The simplest way to create events." -msgstr "" - -#: app/templates/components/widgets/forms/billing-info.hbs:29:21 -msgid "State/Province" -msgstr "" - -#: app/templates/components/widgets/forms/file-upload.hbs:7:8 -msgid "Remove file" -msgstr "" - -#: app/templates/components/widgets/forms/file-upload.hbs:15:12 -msgid "Or" -msgstr "" - -#: app/templates/components/widgets/forms/file-upload.hbs:26:11 -#: app/templates/components/widgets/forms/image-upload.hbs:80:7 -msgid "Not larger than" -msgstr "" - -#: app/templates/components/widgets/forms/image-upload.hbs:9:38 -#: app/templates/components/widgets/forms/image-upload.hbs:34:38 -msgid "Image Uploading" -msgstr "" - -#: app/templates/components/widgets/forms/image-upload.hbs:19:12 -#: app/templates/components/widgets/forms/image-upload.hbs:44:12 -msgid "Re-crop" -msgstr "" - -#: app/templates/components/widgets/forms/image-upload.hbs:73:16 -msgid "click or drag-and-drop" -msgstr "" - -#: app/templates/components/widgets/forms/link-input.hbs:55:30 -msgid "Add custom link" -msgstr "" - -#: app/templates/components/widgets/forms/link-input.hbs:58:30 -msgid "Add social link" -msgstr "" - -#: app/templates/components/widgets/forms/location-input.hbs:9:22 -msgid "Venue Name" -msgstr "" - -#: app/templates/components/widgets/forms/location-input.hbs:16:22 -msgid "Street Address" -msgstr "" - -#: app/templates/components/widgets/forms/location-input.hbs:48:57 -msgid "Reset Map" -msgstr "" - -#: app/templates/components/widgets/forms/location-input.hbs:77:36 -msgid "Enter address" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:3:48 -msgid "Bold (Ctrl+B)" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:4:48 -msgid "Italic (Ctrl+I)" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:5:48 -msgid "Underline (Ctrl+U)" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:8:48 -msgid "Numbered List" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:9:48 -msgid "Bullet List" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:12:48 -msgid "Undo (Ctrl+Z)" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:13:48 -msgid "Redo (Ctrl+Y)" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:14:48 -msgid "Line Break" -msgstr "" - -#: app/templates/components/widgets/forms/rich-text-editor.hbs:17:84 -msgid "Insert Link" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:43:10 -msgid "This is a free Ticket" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:87:40 -msgid "Ticket Description" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:92:22 -msgid "This description would be available to the attendees when ordering tickets." -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:100:43 -msgid "Display Ticket description on Public Events page" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:110:12 -msgid "Hide Ticket from the Public Events page" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:111:37 -msgid "To sell hidden tickets you need to set up an access code under Event Dashboard > Tickets Tab > Access Code." -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:123:14 -msgid "Tickets Absorb Fees" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:124:39 -msgid "Platform fees will always be included in your ticket price. You will receive an invoice each month." -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:177:32 -msgid "Number of tickets allowed per order" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:180:70 -msgid "Minimum Order" -msgstr "" - -#: app/templates/components/widgets/forms/ticket-input.hbs:187:70 -msgid "Maximum Order" -msgstr "" - -#: app/templates/components/widgets/twitter-timeline.hbs:4:4 -msgid "Tweets by" -msgstr "" - -#: app/templates/create.hbs:4:27 -msgid "Creating" -msgstr "" - -#: app/templates/event-invoice/paid.hbs:24:8 -#: app/templates/event-invoice/review.hbs:30:18 -#: app/templates/orders/view.hbs:38:8 -msgid "Download Invoice" -msgstr "" - -#: app/templates/event-invoice/review.hbs:3:26 -msgid "Review Invoice" -msgstr "" - -#: app/templates/event-invoice/review.hbs:21:24 -msgid "Due Date" -msgstr "" - -#: app/templates/event-invoice/review.hbs:24:24 -msgid "Total Invoice Amount" -msgstr "" - -#: app/templates/events/view/edit.hbs:2:25 -msgid "Editing" -msgstr "" - -#: app/templates/events/view/scheduler.hbs:5:111 -msgid "Unpublish Schedule" -msgstr "" - -#: app/templates/events/view/scheduler.hbs:7:110 -msgid "Publish Schedule" -msgstr "" - -#: app/templates/events/view/scheduler.hbs:13:28 -msgid "Unscheduled Sessions" -msgstr "" - -#: app/templates/events/view/sessions.hbs:19:109 -#: app/templates/events/view/speakers.hbs:26:109 -msgid "Export as CSV" -msgstr "" - -#: app/templates/events/view/sessions.hbs:21:14 -#: app/templates/events/view/sessions/create.hbs:3:4 -msgid "Create Session" -msgstr "" - -#: app/templates/events/view/sessions.hbs:33:30 -#: app/templates/events/view/speakers.hbs:40:30 -msgid "In order to use this feature please activate \"Sessions and Speakers\" for the event." -msgstr "" - -#: app/templates/events/view/sessions.hbs:34:30 -#: app/templates/events/view/speakers.hbs:41:30 -msgid "Please click" -msgstr "" - -#: app/templates/events/view/sessions.hbs:34:126 -#: app/templates/events/view/speakers.hbs:41:126 -msgid "to activate this module." -msgstr "" - -#: app/templates/events/view/settings.hbs:6:10 -msgid "Transfer Ownership" -msgstr "" - -#: app/templates/events/view/settings.hbs:9:10 -msgid "You'll lose all the owner rights once the other user accepts the invitation for ownership." -msgstr "" - -#: app/templates/events/view/settings.hbs:15:10 -msgid "Transfer Event" -msgstr "" - -#: app/templates/events/view/settings.hbs:21:10 -msgid "Delete this event" -msgstr "" - -#: app/templates/events/view/settings.hbs:24:10 -msgid "Once you delete an event, you will lose all the data related to this event." -msgstr "" - -#: app/templates/events/view/speakers.hbs:28:14 -msgid "Add Speaker" -msgstr "" - -#: app/templates/events/view/speakers/create.hbs:3:4 -msgid "Create a Speaker" -msgstr "" - -#: app/templates/events/view/tickets.hbs:15:10 -#: app/templates/events/view/tickets/discount-codes.hbs:6:97 -msgid "Discount Codes" -msgstr "" - -#: app/templates/events/view/tickets.hbs:18:10 -#: app/templates/events/view/tickets/access-codes.hbs:7:97 -msgid "Access Codes" -msgstr "" - -#: app/templates/events/view/tickets.hbs:21:10 -msgid "Add order" -msgstr "" - -#: app/templates/events/view/tickets/access-codes.hbs:11:10 -#: app/templates/events/view/tickets/access-codes/create.hbs:3:33 -msgid "Create an access code" -msgstr "" - -#: app/templates/events/view/tickets/access-codes/edit.hbs:3:33 -msgid "Edit an access code" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:5:8 -msgid "View Attendees" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:13:14 -#: app/templates/events/view/tickets/orders.hbs:13:14 -msgid "Export As" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:19:16 -#: app/templates/events/view/tickets/orders.hbs:19:16 -msgid "PDF" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:23:16 -#: app/templates/events/view/tickets/orders.hbs:23:16 -msgid "CSV" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:29:14 -#: app/templates/events/view/tickets/orders.hbs:29:14 -msgid "Showing all the records" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:35:16 -#: app/templates/events/view/tickets/orders.hbs:35:16 -msgid "Filter by Date" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:39:16 -#: app/templates/events/view/tickets/orders.hbs:39:16 -msgid "Filter by Discount" -msgstr "" - -#: app/templates/events/view/tickets/attendees.hbs:43:16 -#: app/templates/events/view/tickets/orders.hbs:43:16 -msgid "Remove Filters" -msgstr "" - -#: app/templates/events/view/tickets/discount-codes.hbs:10:10 -msgid "Create a discount" -msgstr "" - -#: app/templates/events/view/tickets/discount-codes/create.hbs:3:33 -msgid "Create a new Discount Code" -msgstr "" - -#: app/templates/events/view/tickets/discount-codes/edit.hbs:3:33 -msgid "Edit a Discount Code" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:3:4 -msgid "Total Sold Orders" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:8:90 -msgid "Tickets sold" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:16:6 -msgid "By order status" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:22:12 -msgid "Order Status" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:23:34 -msgid "Total Tickets" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:24:34 -msgid "Total Orders" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:25:34 -msgid "Total Sales" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:26:12 -msgid "View Reports" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:37:12 -#: app/templates/events/view/tickets/index.hbs:54:12 -#: app/templates/events/view/tickets/index.hbs:71:12 -#: app/templates/events/view/tickets/index.hbs:88:12 -#: app/templates/events/view/tickets/index.hbs:105:12 -msgid "View orders" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:41:12 -#: app/templates/events/view/tickets/index.hbs:58:12 -#: app/templates/events/view/tickets/index.hbs:75:12 -#: app/templates/events/view/tickets/index.hbs:92:12 -#: app/templates/events/view/tickets/index.hbs:109:12 -msgid "View attendees" -msgstr "" - -#: app/templates/events/view/tickets/index.hbs:123:45 -msgid "Tickets Capacity Set" -msgstr "" - -#: app/templates/events/view/tickets/orders.hbs:5:8 -msgid "View Orders" -msgstr "" - -#: app/templates/explore.hbs:55:38 -msgid "No events found for selected filters" -msgstr "" - -#: app/templates/index.hbs:5:29 -msgid "Featured Events" -msgstr "" - -#: app/templates/index.hbs:23:29 -msgid "No Upcoming Events Found" -msgstr "" - -#: app/templates/index.hbs:36:85 -msgid "Show more calls for speakers" -msgstr "" - -#: app/templates/my-tickets.hbs:5:8 -msgid "My tickets" -msgstr "" - -#: app/templates/my-tickets/past.hbs:8:38 -#: app/templates/my-tickets/upcoming/list.hbs:8:38 -msgid "No tickets found" -msgstr "" - -#: app/templates/my-tickets/upcoming.hbs:8:8 -msgid "Open Orders" -msgstr "" - -#: app/templates/notifications/all.hbs:11:96 -msgid "Mark all as read" -msgstr "" - -#: app/templates/notifications/all.hbs:27:14 -msgid "Mark as read" -msgstr "" - -#: app/templates/notifications/all.hbs:54:36 -msgid "No Unread Notifications" -msgstr "" - -#: app/templates/notifications/all.hbs:56:36 -msgid "No Notifications" -msgstr "" - -#: app/templates/orders/pending.hbs:44:12 -msgid "Pay Now" -msgstr "" - -#: app/templates/orders/pending.hbs:64:72 -msgid "Pay with PayTM" -msgstr "" - -#: app/templates/orders/pending.hbs:68:68 -msgid "Pay with AliPay" -msgstr "" - -#: app/templates/orders/view.hbs:33:8 -msgid "Download Tickets" -msgstr "" - -#: app/templates/organizer-app.hbs:17:4 -msgid "Open Event Organizer App" -msgstr "" - -#: app/templates/organizer-app.hbs:41:72 -msgid "Organizer Android App" -msgstr "" - -#: app/templates/organizer-app.hbs:46:10 -msgid "Make your event success with Orga App" -msgstr "" - -#: app/templates/organizer-app.hbs:51:12 -msgid "Hassle-free checkin" -msgstr "" - -#: app/templates/organizer-app.hbs:54:12 -msgid "Scan the QR Code and Check-in/Check-out Attendees and Ticket Holder on the go." -msgstr "" - -#: app/templates/organizer-app.hbs:59:34 -msgid "Easy Communication" -msgstr "" - -#: app/templates/organizer-app.hbs:61:12 -msgid "Sync your app data with Organizer Server on the go." -msgstr "" - -#: app/templates/organizer-app.hbs:67:12 -msgid "Manage Efficiently" -msgstr "" - -#: app/templates/organizer-app.hbs:70:12 -msgid "Get Order, Event, Sales Statistics with Orga App on the go." -msgstr "" - -#: app/templates/organizer-app.hbs:76:12 -msgid "Ticket and Event" -msgstr "" - -#: app/templates/organizer-app.hbs:79:12 -msgid "Manage and Create new Tickets or Events with the power of your touch on your phone" -msgstr "" - -#: app/templates/organizer-app.hbs:85:12 -msgid "Communication on the Go" -msgstr "" - -#: app/templates/organizer-app.hbs:88:12 -msgid "Get Push Notification about new attendees or Ticket Holders on your phone ." -msgstr "" - -#: app/templates/organizer-app.hbs:99:2 -msgid "Please Check-Out our Attendee App" -msgstr "" - -#: app/templates/pricing.hbs:23:35 -msgid "Features" -msgstr "" - -#: app/templates/pricing.hbs:24:35 -msgid "Early Access Plan" -msgstr "" - -#: app/templates/public.hbs:50:122 -msgid "Clear Track Filter" -msgstr "" - -#: app/templates/public.hbs:64:16 -msgid "Rooms" -msgstr "" - -#: app/templates/public.hbs:65:121 -msgid "Clear Room Filter" -msgstr "" - -#: app/templates/public/cfs/new-session.hbs:4:6 -msgid "Session Details" -msgstr "" - -#: app/templates/public/cfs/new-speaker.hbs:4:6 -msgid "Speaker Details" -msgstr "" - -#: app/templates/public/index.hbs:34:75 -msgid "To place a ticket order:" -msgstr "" - -#: app/templates/public/index.hbs:50:6 -msgid "Supported By" -msgstr "" - -#: app/templates/public/index.hbs:62:6 -msgid "Organized by" -msgstr "" - -#: app/templates/public/index.hbs:74:10 -msgid "Online Event" -msgstr "" - -#: app/templates/public/index.hbs:87:10 -msgid "Location to be announced" -msgstr "" - -#: app/templates/public/schedule.hbs:16:34 -msgid "Schedule for the event is currently unavailable" -msgstr "" - -#: app/templates/public/session/view.hbs:10:87 -msgid "Edit Session Proposal" -msgstr "" - -#: app/templates/public/session/view.hbs:22:89 -msgid "Edit Speaker-" -msgstr "" - -#: app/templates/public/sessions.hbs:17:59 -#: app/templates/public/sessions.hbs:19:119 -msgid "By Title" -msgstr "" - -#: app/templates/public/sessions.hbs:17:74 -#: app/templates/public/sessions.hbs:20:123 -msgid "By Time" -msgstr "" - -#: app/templates/public/sessions.hbs:38:36 -#: app/templates/public/sessions.hbs:52:36 -msgid "No Sessions exist for this time period" -msgstr "" - -#: app/utils/dictionary/filters.js:16:13 -msgid "This week" -msgstr "" - -#: app/utils/dictionary/filters.js:24:13 -msgid "Next week" -msgstr "" - -#: app/utils/dictionary/filters.js:32:13 -msgid "Custom dates" -msgstr "" - -#~ msgid "English" -#~ msgstr "English" - -#~ msgid "Bengali" -#~ msgstr "Bengali" - -#~ msgid "Oops, the page you're" -#~ msgstr "Oops, the page you're" - -#~ msgid "exisit" -#~ msgstr "exisit" - -#~ msgid "on our servers" -#~ msgstr "on our servers" - -#~ msgid "Street Address Line 1" -#~ msgstr "Street Address Line 1" - -#~ msgid "Street Address Line 2" -#~ msgstr "Street Address Line 2" diff --git a/translations/zh_Hans.po b/translations/zh_Hans.po index c99e43e0c86..92caa6c909d 100644 --- a/translations/zh_Hans.po +++ b/translations/zh_Hans.po @@ -29,11 +29,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -51,10 +61,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -64,7 +83,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -80,6 +101,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -87,7 +109,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -96,19 +124,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -164,13 +179,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -319,15 +327,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -540,13 +539,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -636,13 +628,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -757,6 +742,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6951,357 +6941,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "Message" -#~ msgstr "信息" - -#~ msgid "Started" -#~ msgstr "开始" - -#~ msgid "Sitemap" -#~ msgstr "网站地图" - -#~ msgid "Locations" -#~ msgstr "地点" - -#~ msgid "Support" -#~ msgstr "支援" - -#~ msgid "Github" -#~ msgstr "GitHub" - -#~ msgid "Youtube" -#~ msgstr "YouTube" - -#~ msgid "Start Date" -#~ msgstr "开始日期" - -#~ msgid "End Date" -#~ msgstr "结束日期" - -#~ msgid "Roles" -#~ msgstr "角色" - -#~ msgid "Track" -#~ msgstr "轨道" - -#~ msgid "Date of Submission" -#~ msgstr "呈交日期" - -#~ msgid "Submission Date" -#~ msgstr "呈交日期" - -#~ msgid "Email Sent" -#~ msgstr "电邮已发送" - -#~ msgid "Order" -#~ msgstr "订购" - -#~ msgid "Google" -#~ msgstr "谷歌" - -#~ msgid "Mark All as Read" -#~ msgstr "标记为已读" - -#~ msgid "We are not able to understand what you require" -#~ msgstr "我们无法了解您的需求" - -#~ msgid "Access denied" -#~ msgstr "进入被拒绝" - -#~ msgid "Sorry, but you don't have permission access to this page." -#~ msgstr "很抱歉,您没有此网页的存取权限。" - -#~ msgid "You got" -#~ msgstr "你有" - -#~ msgid "Sorry but we couldn't find this page since the page you are looking for does not exist." -#~ msgstr "你在寻找的页面不存在。" - -#~ msgid "We seem to be having some issues on our side." -#~ msgstr "很抱歉,网页出了故障。" - -#~ msgid "No upcoming events available at this time" -#~ msgstr "目前没有即将举行的活动" - -#~ msgid "No call for speakers open at this time" -#~ msgstr "此时没有人呼吁演讲者" - -#~ msgid "Account Management" -#~ msgstr "账户管理" - -#~ msgid "Sessions loading" -#~ msgstr "会话加载" - -#~ msgid "All the timings are in" -#~ msgstr "所有的时间都在" - -#~ msgid "Confirm Email" -#~ msgstr "确认电子邮件地址" - -#~ msgid "Contact the organizer" -#~ msgstr "联络主办方" - -#~ msgid "Your Order" -#~ msgstr "您的订单" - -#~ msgid "Please complete registration within 10:00 minutes" -#~ msgstr "请在十分中内完成报名" - -#~ msgid "First" -#~ msgstr "第一" - -#~ msgid "name" -#~ msgstr "名称" - -#~ msgid "Order now" -#~ msgstr "马上订购" - -#~ msgid "Processing" -#~ msgstr "处理" - -#~ msgid "No tickets selected." -#~ msgstr "没有选择的门票。" - -#~ msgid "Date and Time" -#~ msgstr "日期与时间" - -#~ msgid "The images should be no larger than 10MB" -#~ msgstr "照片不应该超过10MB" - -#~ msgid "Drafts" -#~ msgstr "草稿" - -#~ msgid "Close" -#~ msgstr "关" - -#~ msgid "Sent to" -#~ msgstr "发送给" - -#~ msgid "All Accepted" -#~ msgstr "全部被接受" - -#~ msgid "All Rejected" -#~ msgstr "全部被拒绝" - -#~ msgid "Date of Event" -#~ msgstr "活动日期" - -#~ msgid "Width" -#~ msgstr "宽度" - -#~ msgid "Height" -#~ msgstr "高度" - -#~ msgid "Quality" -#~ msgstr "品质" - -#~ msgid "Previous Imports" -#~ msgstr "以前的输入" - -#~ msgid "Are you sure you would like to delete this event" -#~ msgstr "您确定要删除此活动吗" - -#~ msgid "Confirm Delete" -#~ msgstr "确认删除" - -#~ msgid "Co-organizer" -#~ msgstr "联合组织者" - -#~ msgid "Update Role" -#~ msgstr "更新角色" - -#~ msgid "Manage Roles" -#~ msgstr "管理角色" - -#~ msgid "User (Email)" -#~ msgstr "用户 (电子邮件)" - -#~ msgid "accepted" -#~ msgstr "接受" - -#~ msgid "invited" -#~ msgstr "邀请" - -#~ msgid "Invitation Link" -#~ msgstr "邀请链接" - -#~ msgid "User email" -#~ msgstr "用户电子邮件" - -#~ msgid "Choose" -#~ msgstr "选择" - -#~ msgid "Event Sponsors" -#~ msgstr "事件赞助商" - -#~ msgid "Add Sponsor" -#~ msgstr "加赞助商" - -#~ msgid "Export and Download Event as zip" -#~ msgstr "导出和下载事件为ZIP" - -#~ msgid "Select which media files you want in the zip" -#~ msgstr "在ZIP中选择所需的媒体文件" - -#~ msgid "Started by" -#~ msgstr "开始" - -#~ msgid "datetime" -#~ msgstr "时间" - -#~ msgid "You can make a" -#~ msgstr "你可以做一个" - -#~ msgid "request to the following endpoint to access the selected information" -#~ msgstr "请求以下端点访问所选信息" - -#~ msgid "In order to use this feature activate" -#~ msgstr "为了使用此功能激活" - -#~ msgid "Sessions and Speakers" -#~ msgstr "会议和演讲者" - -#~ msgid "for the event" -#~ msgstr "为事件" - -#~ msgid "Please" -#~ msgstr "请" - -#~ msgid "General Info" -#~ msgstr "基本信息" - -#~ msgid "Event ID" -#~ msgstr "事件ID" - -#~ msgid "Event Url" -#~ msgstr "事件网址" - -#~ msgid "Event Start Time" -#~ msgstr "事件开始时间" - -#~ msgid "Event End Time" -#~ msgstr "活动结束时间" - -#~ msgid "Event Session Types" -#~ msgstr "活动会话类型" - -#~ msgid "Event Links and Social media" -#~ msgstr "活动链接和社交媒体" - -#~ msgid "'Do you want to edit this record?'" -#~ msgstr "您是否要修改这个记录?'" - -#~ msgid "Permissions List" -#~ msgstr "权限列表" - -#~ msgid "Co-Organizer" -#~ msgstr "协办单位" - -#~ msgid "Error loading sessions" -#~ msgstr "加载会话时出错" - -#~ msgid "No Unscheduled sessions" -#~ msgstr "不定期的会议" - -#~ msgid "Schedule last published on" -#~ msgstr "最后发表的时间表" - -#~ msgid "Clear Overlaps" -#~ msgstr "清除重叠" - -#~ msgid "Add New Microlocation" -#~ msgstr "添加新微定位" - -#~ msgid "Export as" -#~ msgstr "导出为" - -#~ msgid "Long Abstract" -#~ msgstr "长摘要" - -#~ msgid "Update Session" -#~ msgstr "更新会话" - -#~ msgid "New Microlocation" -#~ msgstr "新微定位" - -#~ msgid "Floor" -#~ msgstr "楼" - -#~ msgid "Latitude" -#~ msgstr "纬度" - -#~ msgid "Longitude" -#~ msgstr "经度" - -#~ msgid "Add Microlocation" -#~ msgstr "添加微分配" - -#~ msgid "Media" -#~ msgstr "媒体" - -#~ msgid "Slide" -#~ msgstr "幻灯片" - -#~ msgid "Session Invitation" -#~ msgstr "会议邀请" - -#~ msgid "Invitation Pag" -#~ msgstr "邀请页" - -#~ msgid "You have been invited for session" -#~ msgstr "您已被邀请为会话" - -#~ msgid "Accept" -#~ msgstr "接受" - -#~ msgid "Reject" -#~ msgstr "拒绝" - -#~ msgid "Select Avatar" -#~ msgstr "选择头像" - -#~ msgid "Avatar size must be less than 1MB." -#~ msgstr "阿凡达大小必须小于 1 MB。" - -#~ msgid "Crop your image" -#~ msgstr "裁剪你的图片" - -#~ msgid "Done" -#~ msgstr "完毕" - -#~ msgid "selected" -#~ msgstr "选择" - -#~ msgid "Invite Speakers" -#~ msgstr "邀请仪长" - -#~ msgid "checked" -#~ msgstr "检查了" - -#~ msgid "Donation" -#~ msgstr "捐款" - -#~ msgid "example" -#~ msgstr "例如" - -#~ msgid "Create Password" -#~ msgstr "制定密码" - -#~ msgid "Email Confirmation" -#~ msgstr "确认电邮" - -#~ msgid "Lost your password" -#~ msgstr "失去密码" - -#~ msgid "Already a member" -#~ msgstr "已经是用户" - -#~ msgid "Log in" -#~ msgstr "登录" - -#~ msgid "Details about User" -#~ msgstr "用户资料" - -#~ msgid "Logged in as" -#~ msgstr "登录为" diff --git a/translations/zh_Hant.po b/translations/zh_Hant.po index 64b36ddf37b..c4207e0ac2d 100644 --- a/translations/zh_Hant.po +++ b/translations/zh_Hant.po @@ -28,11 +28,21 @@ msgid "Please enter your email ID" msgstr "" #: app/components/account/contact-info-section.js:26:23 +#: app/components/forms/admin/settings/billing.js:35:23 +#: app/components/forms/admin/settings/billing.js:48:23 +#: app/components/forms/admin/settings/system-form.js:155:23 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 #: app/components/forms/login-form.js:29:23 #: app/components/forms/orders/guest-order-form.js:22:23 +#: app/components/forms/orders/order-form.js:91:19 +#: app/components/forms/orders/order-form.js:385:23 +#: app/components/forms/register-form.js:21:23 #: app/components/forms/reset-password-form.js:26:23 +#: app/components/forms/session-speaker-form.js:198:23 +#: app/components/forms/session-speaker-form.js:212:23 #: app/components/forms/user-profile-form.js:41:23 -msgid "Please enter a valid email ID" +#: app/components/forms/wizard/basic-details-step.js:340:23 +msgid "Please enter a valid email address" msgstr "" #: app/components/account/contact-info-section.js:35:23 @@ -50,10 +60,19 @@ msgid "Your account has been deleted successfully." msgstr "" #: app/components/account/danger-zone.js:48:26 +#: app/components/account/email-preferences-section.js:18:26 +#: app/components/events/view/export/download-common.js:80:26 #: app/components/events/view/publish-bar.ts:89:24 +#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 +#: app/components/forms/login-form.js:70:35 +#: app/components/forms/login-form.js:97:28 +#: app/components/forms/reset-password-form.js:117:41 #: app/components/modals/session-notify-modal.js:69:24 +#: app/components/notification-dropdown.js:35:26 #: app/components/unverified-user-message.js:37:28 +#: app/components/widgets/forms/image-upload.js:45:33 #: app/controllers/admin/content/events.js:77:26 +#: app/controllers/admin/content/translations.js:23:24 #: app/controllers/admin/events/list.js:136:26 #: app/controllers/admin/events/list.js:161:24 #: app/controllers/admin/events/list.js:183:24 @@ -63,7 +82,9 @@ msgstr "" #: app/controllers/admin/users/list.js:137:24 #: app/controllers/admin/users/view/events/list.js:82:24 #: app/controllers/admin/users/view/events/list.js:100:24 +#: app/controllers/event-invoice/paid.js:23:24 #: app/controllers/events/list.js:81:24 +#: app/controllers/events/view/export.js:68:26 #: app/controllers/events/view/index.js:56:26 #: app/controllers/events/view/sessions.js:30:26 #: app/controllers/events/view/sessions/list.js:121:26 @@ -79,6 +100,7 @@ msgstr "" #: app/controllers/events/view/tickets/access-codes/list.js:58:26 #: app/controllers/events/view/tickets/access-codes/list.js:76:26 #: app/controllers/events/view/tickets/attendees.js:21:26 +#: app/controllers/events/view/tickets/attendees/list.js:72:26 #: app/controllers/events/view/tickets/discount-codes/list.js:66:26 #: app/controllers/events/view/tickets/discount-codes/list.js:85:26 #: app/controllers/events/view/tickets/orders.js:21:26 @@ -86,7 +108,13 @@ msgstr "" #: app/controllers/events/view/tickets/orders/list.js:89:26 #: app/controllers/events/view/tickets/orders/list.js:107:26 #: app/controllers/events/view/tickets/orders/list.js:132:26 +#: app/controllers/notifications.js:23:26 +#: app/controllers/oauth/callback.js:31:41 +#: app/controllers/public/index.js:88:37 #: app/controllers/public/session/view.js:29:24 +#: app/controllers/register.js:37:35 app/controllers/register.js:70:37 +#: app/mixins/event-wizard.js:173:28 app/mixins/notifications.js:12:28 +#: app/mixins/notifications.js:30:28 app/services/auth-manager.js:148:28 #: app/templates/components/errors/generic-error.hbs:2:51 msgid "An unexpected error has occurred." msgstr "" @@ -95,19 +123,6 @@ msgstr "" msgid "Email notifications updated successfully" msgstr "" -#: app/components/account/email-preferences-section.js:18:26 -#: app/components/forms/login-form.js:70:35 -#: app/components/forms/reset-password-form.js:117:41 -#: app/components/notification-dropdown.js:35:26 -#: app/components/widgets/forms/image-upload.js:45:33 -#: app/controllers/notifications.js:23:26 -#: app/controllers/oauth/callback.js:31:41 -#: app/controllers/public/index.js:88:37 app/controllers/register.js:37:35 -#: app/controllers/register.js:70:37 app/mixins/notifications.js:12:28 -#: app/mixins/notifications.js:30:28 -msgid "An unexpected error occurred." -msgstr "" - #: app/components/account/password-section.js:16:23 msgid "Please enter the current password" msgstr "" @@ -163,13 +178,6 @@ msgstr "" msgid "Task failed." msgstr "" -#: app/components/events/view/export/download-common.js:80:26 -#: app/controllers/admin/content/translations.js:23:24 -#: app/controllers/event-invoice/paid.js:23:24 -#: app/controllers/events/view/export.js:68:26 -msgid "Unexpected error occurred." -msgstr "" - #: app/components/events/view/export/download-zip.js:17:26 msgid "Exported Event Downloaded successfully." msgstr "" @@ -318,15 +326,6 @@ msgstr "" msgid "Please enter the email" msgstr "" -#: app/components/forms/admin/settings/billing.js:35:23 -#: app/components/forms/admin/settings/billing.js:48:23 -#: app/components/forms/admin/settings/system-form.js:155:23 -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:23:23 -#: app/components/forms/orders/order-form.js:385:23 -#: app/components/forms/register-form.js:21:23 -msgid "Please enter a valid email address" -msgstr "" - #: app/components/forms/admin/settings/billing.js:44:23 msgid "Please enter the billing paypal email invoice money will be transferred to" msgstr "" @@ -539,13 +538,6 @@ msgstr "" msgid "Please enter the recipient E-mail" msgstr "" -#: app/components/forms/admin/settings/system/mail-settings/test-email-form.js:48:28 -#: app/components/forms/login-form.js:97:28 -#: app/controllers/events/view/tickets/attendees/list.js:72:26 -#: app/mixins/event-wizard.js:173:28 app/services/auth-manager.js:148:28 -msgid "An unexpected error has occurred" -msgstr "" - #: app/components/forms/admin/settings/ticket-fees-form.js:47:24 msgid "Existing items need to be completed before new items can be added." msgstr "" @@ -635,13 +627,6 @@ msgstr "" msgid "Please enter your email" msgstr "" -#: app/components/forms/orders/order-form.js:91:19 -#: app/components/forms/session-speaker-form.js:198:23 -#: app/components/forms/session-speaker-form.js:212:23 -#: app/components/forms/wizard/basic-details-step.js:340:23 -msgid "Please enter a valid email" -msgstr "" - #: app/components/forms/orders/order-form.js:100:19 #: app/components/forms/session-speaker-form.js:318:23 msgid "Please select a gender" @@ -756,6 +741,11 @@ msgstr "" msgid "Please specify your choice of payment method" msgstr "" +#: app/components/forms/orders/order-form.js:479:23 +#: app/components/forms/session-speaker-form.js:390:23 +msgid "Please enter {{field}}" +msgstr "" + #: app/components/forms/register-form.js:30:23 msgid "Please enter a password" msgstr "" @@ -6952,513 +6942,3 @@ msgstr "" #: app/utils/dictionary/filters.js:32:13 msgid "Custom dates" msgstr "" - -#~ msgid "Message" -#~ msgstr "訊息" - -#~ msgid "Started" -#~ msgstr "已開始" - -#~ msgid "Sitemap" -#~ msgstr "網站地圖" - -#~ msgid "Locations" -#~ msgstr "位置" - -#~ msgid "Support" -#~ msgstr "支持" - -#~ msgid "Github" -#~ msgstr "Github" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Stripe" -#~ msgstr "Stripe" - -#~ msgid "Organizer Description" -#~ msgstr "主辦者描述說明" - -#~ msgid "Ticket URL" -#~ msgstr "票券網址" - -#~ msgid "Check In" -#~ msgstr "報到" - -#~ msgid "Undo" -#~ msgstr "取消動作" - -#~ msgid "Roles" -#~ msgstr "身份" - -#~ msgid "Track" -#~ msgstr "追蹤" - -#~ msgid "Action" -#~ msgstr "動作" - -#~ msgid "Redeem Discount Code" -#~ msgstr "兌換折扣碼" - -#~ msgid "Submission Date" -#~ msgstr "提交日期" - -#~ msgid "Email Sent" -#~ msgstr "電子郵件已寄送" - -#~ msgid "Accessible Ticket" -#~ msgstr "可取用的票券" - -#~ msgid "Validity" -#~ msgstr "有效性" - -#~ msgid "Item Total" -#~ msgstr "項目小計" - -#~ msgid "Free Order" -#~ msgstr "免費訂購" - -#~ msgid "Order" -#~ msgstr "下訂" - -#~ msgid "Ticket Price" -#~ msgstr "票券價格" - -#~ msgid "Discount Per Ticket" -#~ msgstr "每票券折扣" - -#~ msgid "Total Amount" -#~ msgstr "總數量" - -#~ msgid "Google" -#~ msgstr "Google" - -#~ msgid "Mark All as Read" -#~ msgstr "全部標記為已讀" - -#~ msgid "We are not able to understand what you require" -#~ msgstr "我們不能理解你所需要的" - -#~ msgid "We don't seem to speak a common language. If you're facing this issue frequently, drop in an email at our support address so that we can see what's the issue." -#~ msgstr "我們似乎不會說一個共同的語言。如果您經常遇到此問題,請在我們的支持地址發送電子郵件,以便我們了解問題所在。" - -#~ msgid "Access denied" -#~ msgstr "拒絕訪問" - -#~ msgid "Sorry, but you don't have permission access to this page." -#~ msgstr "很抱歉,您沒有此網頁的存取權限。" - -#~ msgid "You got" -#~ msgstr "您有" - -#~ msgid "Sorry but we couldn't find this page since the page you are looking for does not exist." -#~ msgstr "抱歉,我們找不到此網頁,因為您正在尋找的網頁不存在。" - -#~ msgid "We seem to be having some issues on our side." -#~ msgstr "我們似乎在我們身邊有一些問題。" - -#~ msgid "Inconvenience is regretted. We'll fix this as soon as possible." -#~ msgstr "後悔給您帶來不便。我們會盡快解決這個問題。" - -#~ msgid "No upcoming events available at this time" -#~ msgstr "目前沒有即將舉行的活動" - -#~ msgid "No call for speakers open at this time" -#~ msgstr "目前沒有徵集講者" - -#~ msgid "Sessions loading" -#~ msgstr "議程載入中" - -#~ msgid "All the timings are in" -#~ msgstr "所有時間點都在" - -#~ msgid "Your Order" -#~ msgstr "您的訂單" - -#~ msgid "the" -#~ msgstr "這" - -#~ msgid "Order now" -#~ msgstr "立刻下訂" - -#~ msgid "Processing" -#~ msgstr "處理中" - -#~ msgid "Card Nam" -#~ msgstr "卡名" - -#~ msgid "Payment Due" -#~ msgstr "付款到期" - -#~ msgid "No tickets selected." -#~ msgstr "沒有票券被選取。" - -#~ msgid "Discount Applied by " -#~ msgstr "折扣能用在 " - -#~ msgid "Order total" -#~ msgstr "訂單總計" - -#~ msgid "Drafts" -#~ msgstr "草稿" - -#~ msgid "Close" -#~ msgstr "關閉" - -#~ msgid "Not Active" -#~ msgstr "未啟用" - -#~ msgid "Save Discount" -#~ msgstr "儲存折扣" - -#~ msgid "Previous Imports" -#~ msgstr "先前的匯入" - -#~ msgid "Are you sure you would like to delete this event" -#~ msgstr "您確定要刪除此活動" - -#~ msgid "Confirm Delete" -#~ msgstr "確認刪除" - -#~ msgid "Co-organizer" -#~ msgstr "協辦者" - -#~ msgid "Update Role" -#~ msgstr "更新身份" - -#~ msgid "Manage Roles" -#~ msgstr "管理身份" - -#~ msgid "User (Email)" -#~ msgstr "使用者(電子郵件)" - -#~ msgid "accepted" -#~ msgstr "已接受" - -#~ msgid "invited" -#~ msgstr "已邀請" - -#~ msgid "Invitation Link" -#~ msgstr "邀請連結" - -#~ msgid "User email" -#~ msgstr "使用者電子郵件" - -#~ msgid "Choose" -#~ msgstr "選擇" - -#~ msgid "Event Sponsors" -#~ msgstr "活動贊助商" - -#~ msgid "Add Sponsor" -#~ msgstr "加入贊助商" - -#~ msgid "Export and Download Event as zip" -#~ msgstr "以 zip 檔匯出並下載活動行程" - -#~ msgid "Select which media files you want in the zip" -#~ msgstr "選取您要在 zip 中放入哪些媒體檔案" - -#~ msgid "Started by" -#~ msgstr "開始於" - -#~ msgid "datetime" -#~ msgstr "日期時間" - -#~ msgid "You can make a" -#~ msgstr "您可以" - -#~ msgid "request to the following endpoint to access the selected information" -#~ msgstr "請求下列端點存取選取的資訊" - -#~ msgid "In order to use this feature activate" -#~ msgstr "為了使用此功能欲啟用" - -#~ msgid "Sessions and Speakers" -#~ msgstr "議程和講者" - -#~ msgid "for the event" -#~ msgstr "(該活動)" - -#~ msgid "Please" -#~ msgstr "請" - -#~ msgid "General Info" -#~ msgstr "一般資訊" - -#~ msgid "Event ID" -#~ msgstr "活動 ID" - -#~ msgid "Event Url" -#~ msgstr "活動 URL" - -#~ msgid "Event Start Time" -#~ msgstr "活動開始時間" - -#~ msgid "Event End Time" -#~ msgstr "活動結束時間" - -#~ msgid "Event Session Types" -#~ msgstr "活動議程類型" - -#~ msgid "Event Links and Social media" -#~ msgstr "活動連結與社交媒體" - -#~ msgid "'Do you want to edit this record?'" -#~ msgstr "「您想要編輯這項紀錄嗎?」" - -#~ msgid "Permissions List" -#~ msgstr "權限列表" - -#~ msgid "Co-Organizer" -#~ msgstr "協辦者" - -#~ msgid "Error loading sessions" -#~ msgstr "議程載入錯誤" - -#~ msgid "No Unscheduled sessions" -#~ msgstr "無尚未規劃時間的議程" - -#~ msgid "Schedule last published on" -#~ msgstr "上次時間表發佈時間" - -#~ msgid "Clear Overlaps" -#~ msgstr "清除重疊" - -#, fuzzy -#~ msgid "Add New Microlocation" -#~ msgstr "加入新的微定位" - -#~ msgid "Export as" -#~ msgstr "匯出為" - -#~ msgid "Long Abstract" -#~ msgstr "長篇摘要" - -#~ msgid "Update Session" -#~ msgstr "更新議程" - -#, fuzzy -#~ msgid "New Microlocation" -#~ msgstr "新微觀區" - -#~ msgid "Floor" -#~ msgstr "樓層" - -#~ msgid "Latitude" -#~ msgstr "緯度" - -#~ msgid "Longitude" -#~ msgstr "經度" - -#, fuzzy -#~ msgid "Add Microlocation" -#~ msgstr "增加微觀區" - -#~ msgid "Media" -#~ msgstr "媒體" - -#~ msgid "Slide" -#~ msgstr "投影片" - -#~ msgid "Session Invitation" -#~ msgstr "議程邀請" - -#~ msgid "Invitation Pag" -#~ msgstr "邀請頁面" - -#~ msgid "You have been invited for session" -#~ msgstr "您已被邀請參與議程" - -#~ msgid "Accept" -#~ msgstr "接受" - -#~ msgid "Reject" -#~ msgstr "拒絕" - -#~ msgid "Select Avatar" -#~ msgstr "選取頭像" - -#~ msgid "Avatar size must be less than 1MB." -#~ msgstr "頭像大小必須小於 1MB。" - -#~ msgid "Crop your image" -#~ msgstr "裁切您的影像" - -#~ msgid "Done" -#~ msgstr "完成" - -#~ msgid "Modify Speakers" -#~ msgstr "修改講者" - -#~ msgid "selected" -#~ msgstr "已選取" - -#~ msgid "Submit Session" -#~ msgstr "提交議程" - -#~ msgid "Invite Speakers" -#~ msgstr "邀請講者" - -#~ msgid "Save as Draft" -#~ msgstr "儲存為草稿" - -#~ msgid "Featured Speaker" -#~ msgstr "主打講者" - -#~ msgid "checked" -#~ msgstr "已核選" - -#~ msgid "Save Speaker" -#~ msgstr "儲存講者" - -#~ msgid "Create an Access Code" -#~ msgstr "創建取用金鑰" - -#~ msgid "Number of access tickets" -#~ msgstr "取用票卷的數量" - -#~ msgid "Select Ticket(s) applied to the access code" -#~ msgstr "選擇具備取用金鑰的票券" - -#~ msgid "Select all Tickets Type" -#~ msgstr "選擇所有票券類型" - -#~ msgid "Show other options" -#~ msgstr "顯示其他選項" - -#~ msgid "Set the min. and max. quantity allowed to purchase per order (optional)" -#~ msgstr "設定每次下訂的最小和最大數量限制(選填)" - -#~ msgid "Validity period (optional)" -#~ msgstr "有效期限(選填)" - -#~ msgid "Save Access" -#~ msgstr "儲存取用紀錄" - -#~ msgid "Payment Type" -#~ msgstr "支付類型" - -#~ msgid "Select payment type" -#~ msgstr "選取支付類型" - -#~ msgid "Telegraphic Transfer (TT) / Bank Transfer" -#~ msgstr "電匯 / 銀行轉帳" - -#~ msgid "Onsite / Cash" -#~ msgstr "線上付款 / 現金" - -#~ msgid "Number of discount tickets" -#~ msgstr "折扣票券數量" - -#~ msgid "Qty" -#~ msgstr "數量" - -#~ msgid "Buyer / Registration Contact" -#~ msgstr "買家 / 註冊聯絡方式" - -#~ msgid "Orders Summary" -#~ msgstr "訂單摘要" - -#~ msgid "by order status" -#~ msgstr "依據訂單狀態" - -#~ msgid "Enter Address" -#~ msgstr "輸入地址" - -#~ msgid "Reset Location" -#~ msgstr "重設地址" - -#~ msgid "Organizer Information" -#~ msgstr "主辦者資訊" - -#~ msgid "Organizer name" -#~ msgstr "主辦者名稱" - -#~ msgid "Use Ticketing System" -#~ msgstr "使用票券系統" - -#~ msgid "Ticket Details" -#~ msgstr "票券細節" - -#~ msgid "Donation" -#~ msgstr "捐款" - -#~ msgid "Add Ticket URL" -#~ msgstr "加入票券網址" - -#~ msgid "Enter Discount Code" -#~ msgstr "輸入折扣碼" - -#~ msgid "Apply Discount" -#~ msgstr "套用折扣" - -#~ msgid "Code applied !" -#~ msgstr "折扣碼已套用!" - -#~ msgid "Add Payment details" -#~ msgstr "加入支付細節" - -#~ msgid "Choose Country" -#~ msgstr "選擇國家" - -#~ msgid "Choose a country for your payment" -#~ msgstr "為您的支付選擇國家" - -#~ msgid "Choose Currency" -#~ msgstr "選擇貨幣" - -#~ msgid "Please select a currency" -#~ msgstr "請選擇一種貨幣" - -#~ msgid "Choose Payment Methods" -#~ msgstr "選擇支付管道" - -#~ msgid "Online Payments" -#~ msgstr "線上支付" - -#~ msgid "YES, accept payment through PayPal " -#~ msgstr "是的,接受用 PayPal 支付 " - -#~ msgid "Paypal accepts credit card, debit card and PayPal payments. To learn how it works click" -#~ msgstr "PayPal 接受信用卡、金融卡和 PayPal 支付。若要深入瞭解其細節請點按" - -#~ msgid "here." -#~ msgstr "這裡。" - -#~ msgid "Don't have a PayPal account?" -#~ msgstr "還沒有 PayPal 帳號?" - -#~ msgid "Create a free PayPal merchant account." -#~ msgstr "建立免費的 PayPal 銷售帳號。" - -#~ msgid "Stripe accepts Visa, Master and Amex. To learn how it works click" -#~ msgstr "Stripe 接受 Visa、Master 和 Amex 卡。若要瞭解細節請點按" - -#~ msgid "Find out more about Stripe" -#~ msgstr "深入瞭解 Stripe" - -#~ msgid "Use Stripe for payments" -#~ msgstr "使用 Stripe 作支付" - -#~ msgid "The stripe account" -#~ msgstr "Stripe 帳號" - -#~ msgid "has been connected." -#~ msgstr "已經連結。" - -#~ msgid "Click to De-link the account." -#~ msgstr "點按可取消帳號連結。" - -#~ msgid "Enter your PayPal account name and payment details instructions to ticket buyers" -#~ msgstr "輸入你的 PayPal 帳戶名稱以及給購票者的付款詳細說明" - -#~ msgid "example" -#~ msgstr "範例" - -#~ msgid "Enter your bank details and instructions to ticket buyers" -#~ msgstr "輸入你的詳細銀行資訊以及給購票者的說明" - -#~ msgid "YES, accept payment at the event(on site)" -#~ msgstr "是的,接受付款方式為現場付款"