```javascript=
[
{
id: '639f0e77205b8c494588784a',
displayName: 'Phone',
fields: '{"title":"My Phone","value":"0980092134"}',
order: 10,
type: 'PHONE',
isVisible: true
},
{
id: '63a32e8a9cfc2e76a50c9823',
displayName: '',
fields: '{"title":"Gmail for Work","value":"ductbui29@yopmail.com"}',
order: 30,
type: 'EMAIL',
isVisible: true
},
{
id: '63a4956369874295c37158a3',
displayName: '',
fields: '{"title":"My Location","value":"109 Hai Ba Trung"}',
order: 40,
type: 'ADDR',
isVisible: true
},
{
id: '63a49e0469874295c37158a9',
displayName: '',
fields: '{"title":"Test Behance","value":"UmaBrandStudio"}',
order: 90,
type: 'BEHANCE',
isVisible: true
},
{
id: '63ab1616c47f661d2e39abd1',
displayName: 'Phone',
fields: '{"title":"My Phone 2","value":"123123123"}',
order: 100,
type: 'PHONE',
isVisible: true
}
]
{
displayName: 'Alexander Lucas',
description: "Hello there, let's connect with each other. 🤟🏻 Ouch jay!",
photoURL: 'https://lh3.googleusercontent.com/a/AEdFTp5wBcC0wSGA2UYwlIJMxJnwQ5dGNf-IEZe_XwEB=s96-c',
coverURL: null
}
```
```
import codecs
arr = []
serialized_arr = []
values_arr = []
def read():
with open("input.txt", "r") as f:
counter = 0
for value in f:
v = value.split("=>")
if len(v) > 1:
counter = counter + 1
serialized = v[0].strip().replace("'", "").replace(",", "")
value = v[1].strip().replace("'", "").replace(",", "")
print(serialized)
arr.append(serialized)
values_arr.append(value)
print(counter)
print(len(arr))
with open("result-keys.txt", "w") as f:
for l in arr:
f.write(f"{l}\n")
with open("result-values.txt", "w") as f:
for l in values_arr:
f.write(f"{l}\n")
def write():
keys = open("result-keys.txt", "r")
values = open("result-values.txt", encoding="utf-8")
for key, value in zip(keys, values):
serialized = f"'{key.strip()}' => '{value.strip()}',"
serialized_arr.append(serialized)
with open("final_result.txt", "w", encoding="utf-8") as f:
for l in serialized_arr:
f.write(f"{l}\n")
read()
#write()
```
'direction' => 'ltr',
'global.submit' => 'Submit',
'global.create' => 'Create',
'global.delete' => 'Delete',
'global.edit' => 'Edit',
'global.view' => 'View',
'global.duplicate' => 'Duplicate',
'global.reset' => 'Reset',
'global.share' => 'Share',
'global.cancel' => 'Cancel',
'global.update' => 'Update',
'global.enable' => 'Enable',
'global.hidden' => 'Hidden',
'global.login' => 'Login',
'global.language' => 'Language',
'global.choose_language' => 'Choose Language',
'global.theme_style' => 'Switch to %s Mode',
'global.theme_style_light' => 'Light',
'global.theme_style_dark' => 'Dark',
'global.close' => 'Close',
'global.search' => 'Search',
'global.no_data' => 'No data available..',
'global.unknown' => 'Unknown',
'global.none' => 'None',
'global.yes' => 'Yes',
'global.no' => 'No',
'global.active' => 'Active',
'global.disabled' => 'Disabled',
'global.download' => 'Download',
'global.download_as' => 'Download as %s',
'global.export' => 'Export',
'global.export_to' => 'Export to %s',
'global.captcha_placeholder' => 'Captcha text',
'global.loading' => 'Loading..',
'global.view_more' => 'View more',
'global.view_x_more' => 'View %s more..',
'global.clipboard_copy' => 'Copy to clipboard',
'global.clipboard_copied' => 'Copied!',
'global.terms_and_conditions' => 'Terms and Conditions',
'global.privacy_policy' => 'Privacy Policy',
'global.delete_file' => 'Delete uploaded file',
'global.bulk_actions' => 'Bulk actions',
'global.unlimited' => 'Unlimited',
'global.duplicated' => 'Duplicated',
'global.datetime' => 'Created on',
'global.last_datetime' => 'Updated on',
'global.datetime_tooltip' => 'Created on %s',
'global.last_datetime_tooltip' => 'Updated on %s',
'global.device.desktop' => 'Desktop',
'global.device.tablet' => 'Tablet',
'global.device.mobile' => 'Mobile',
'global.admin_impersonate_user_help' => 'Logged in as',
'global.admin_impersonate_user_logout' => 'Exit',
'global.team_delegate_access_help' => 'Logged in as %1$s via %2$s team.',
'global.team_delegate_access_logout' => 'Exit',
'global.info_message.user_plan_is_expired' => 'Your current plan has expired and your access is now limited.',
'global.info_message.plan_feature_no_access' => 'Your current plan does not allow you to access this feature.',
'global.info_message.plan_feature_limit' => 'Your have exceeded the limits of your current plan.',
'global.info_message.team_no_access' => 'Your team access does not allow you to use this feature.',
'global.info_message.team_limit' => 'Only the team owner can access this page.',
'global.success_message.create1' => '%s has been successfully created.',
'global.success_message.create2' => 'Successfully created.',
'global.success_message.update1' => '%s has been successfully updated.',
'global.success_message.update2' => 'Successfully updated.',
'global.success_message.delete1' => '%s has been successfully deleted.',
'global.success_message.delete2' => 'Successfully deleted.',
'global.error_message.directory_not_writable' => 'Directory <strong>%s</strong> is not writable. Please set the CHMOD permissions so this folder can be written.',
'global.error_message.file_not_writable' => 'File <strong>%s</strong> is not writable . Please set the CHMOD permissions so this file can be written.',
'global.error_message.empty_fields' => 'You must fill all the fields.',
'global.error_message.empty_field' => 'This field is required, you must fill it.',
'global.error_message.invalid_file_type' => 'You are not allowed to upload files of this type.',
'global.error_message.file_upload' => 'Something happened while uploading the file and we could not process it.',
'global.error_message.invalid_csrf_token' => 'The action could not be finished because the protector has expired, please try again.',
'global.error_message.basic' => 'We could not perform this action.',
'global.error_message.file_size_limit' => 'The uploaded file is too big, the maximum file size you are allowed to upload is %s MB.',
'global.error_message.password_length' => 'The password must be between 6 and 64 characters.',
'global.error_message.passwords_not_matching' => 'The entered passwords do not match.',
'global.error_message.invalid_email' => 'The entered email is invalid.',
'global.error_message.invalid_captcha' => 'The entered captcha code is invalid.',
'global.menu.logout' => 'Logout',
'global.menu.admin' => 'Admin',
'global.accessibility.toggle_navigation' => 'Toggle navigation',
'global.accessibility.logo_alt' => 'Website Logo',
'global.accessibility.captcha_alt' => 'Captcha',
'global.accessibility.captcha_input' => 'Captcha Field',
'global.accessibility.whitelisted_file_extensions' => '%s allowed.',
'global.accessibility.file_size_limit' => '%s MB maximum.',
'global.pagination.previous' => 'Previous',
'global.pagination.next' => 'Next',
'global.pagination.results' => 'Showing %1$s-%2$s out of %3$s results.',
'global.filters.header' => 'Filters',
'global.filters.reset' => 'Reset',
'global.filters.search' => 'Search',
'global.filters.search_by' => 'Search by',
'global.filters.status' => 'Status',
'global.filters.order_by' => 'Order by',
'global.filters.order_by_datetime' => 'Created datetime',
'global.filters.order_by_last_datetime' => 'Updated datetime',
'global.filters.order_type' => 'Order type',
'global.filters.order_type_asc' => 'Ascending',
'global.filters.order_type_desc' => 'Descending',
'global.filters.all' => 'All',
'global.filters.results_per_page' => 'Results per page',
'global.date.datetime_readable_format' => '%1$s %2$s, %3$s',
'global.date.datetime_small_readable_format' => '%1$s %2$s',
'global.date.datetime_ymd_format' => '%1$s-%2$s-%3$s',
'global.date.datetime_his_format' => '%1$s:%2$s:%3$s',
'global.date.datetime_ymd_his_format' => '%1$s-%2$s-%3$s %4$s:%5$s:%6$s',
'global.date.now' => 'now',
'global.date.cancel' => 'Cancel',
'global.date.apply' => 'Apply',
'global.date.from' => 'From',
'global.date.to' => 'To',
'global.date.custom' => 'Custom',
'global.date.today' => 'Today',
'global.date.yesterday' => 'Yesterday',
'global.date.last_7_days' => 'Last 7 days',
'global.date.last_30_days' => 'Last 30 days',
'global.date.this_month' => 'This month',
'global.date.last_month' => 'Last month',
'global.date.all_time' => 'All time',
'global.date.short_milliseconds' => 'ms',
'global.date.short_seconds' => 's',
'global.date.second' => 'second',
'global.date.seconds' => 'seconds',
'global.date.minute' => 'minute',
'global.date.minutes' => 'minutes',
'global.date.hour' => 'hour',
'global.date.hours' => 'hours',
'global.date.day' => 'day',
'global.date.days' => 'days',
'global.date.week' => 'week',
'global.date.weeks' => 'weeks',
'global.date.month' => 'month',
'global.date.months' => 'months',
'global.date.year' => 'year',
'global.date.years' => 'years',
'global.date.time_ago' => '%1$s %2$s ago',
'global.date.time_until' => '%1$s %2$s',
'global.date.long_days.1' => 'Monday',
'global.date.long_days.2' => 'Tuesday',
'global.date.long_days.3' => 'Wednesday',
'global.date.long_days.4' => 'Thursday',
'global.date.long_days.5' => 'Friday',
'global.date.long_days.6' => 'Saturday',
'global.date.long_days.7' => 'Sunday',
'global.date.short_days.1' => 'Mon',
'global.date.short_days.2' => 'Tue',
'global.date.short_days.3' => 'Wed',
'global.date.short_days.4' => 'Thu',
'global.date.short_days.5' => 'Fri',
'global.date.short_days.6' => 'Sat',
'global.date.short_days.7' => 'Sun',
'global.date.long_months.1' => 'January',
'global.date.long_months.2' => 'February',
'global.date.long_months.3' => 'March',
'global.date.long_months.4' => 'April',
'global.date.long_months.5' => 'May',
'global.date.long_months.6' => 'June',
'global.date.long_months.7' => 'July',
'global.date.long_months.8' => 'August',
'global.date.long_months.9' => 'September',
'global.date.long_months.10' => 'October',
'global.date.long_months.11' => 'November',
'global.date.long_months.12' => 'December',
'global.date.short_months.1' => 'Jan',
'global.date.short_months.2' => 'Feb',
'global.date.short_months.3' => 'Mar',
'global.date.short_months.4' => 'Apr',
'global.date.short_months.5' => 'May',
'global.date.short_months.6' => 'Jun',
'global.date.short_months.7' => 'Jul',
'global.date.short_months.8' => 'Aug',
'global.date.short_months.9' => 'Sep',
'global.date.short_months.10' => 'Oct',
'global.date.short_months.11' => 'Nov',
'global.date.short_months.12' => 'Dec',
'global.number.decimal_point' => '.',
'global.number.thousands_separator' => ',',
'global.emails.copyright' => 'Copyright © %1$s %2$s.',
'global.emails.anti_phishing_code' => 'Anti phishing code: %s',
'global.emails.user_activation.subject' => 'Confirm your new account - {{WEBSITE_TITLE}}',
'global.emails.user_activation.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />We are glad you joined us! <br /><br />One more step and you are ready,<br /><br />you just need to click the following link in order to join {{WEBSITE_TITLE}}<br /><br /><a href="{{ACTIVATION_LINK}}">Activate your account</a><br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_pending_email.subject' => 'Confirm your email address change - {{WEBSITE_TITLE}}',
'global.emails.user_pending_email.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />You have requested to change your email address from {{CURRENT_EMAIL}} to {{NEW_EMAIL}}. <br /><br />Please click on the link below to confirm your new email address. <br /><br /><a href="{{ACTIVATION_LINK}}">Confirm email address change</a><br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_lost_password.subject' => 'Reset your password - {{WEBSITE_TITLE}}',
'global.emails.user_lost_password.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is your reset password link: <a href="{{LOST_PASSWORD_LINK}}">Reset Password</a><br /><br />If you did not request this, you can ignore it!<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_payment.subject' => 'Payment received - {{WEBSITE_TITLE}}',
'global.emails.user_payment.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is a confirmation that your payment has been received by us.<br /><br />Your account plan is now paid until {{PLAN_EXPIRATION_DATE}}!<br /><br />You can also check all the <a href="{{USER_PAYMENTS_LINK}}">payments</a> you made, <a href="{{USER_PLAN_LINK}}">change your plan</a> or <a href="{{USER_PLAN_LINK}}">cancel it</a>.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_plan_expiry_reminder.subject' => 'Your plan is expiring in {{DAYS_UNTIL_EXPIRATION}} days - {{WEBSITE_TITLE}}',
'global.emails.user_plan_expiry_reminder.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is a simple email to remind you that your {{PLAN_NAME}} plan is going to expire in {{DAYS_UNTIL_EXPIRATION}} days.<br /><br />Please <a href="{{USER_PLAN_RENEW_LINK}}">renew your plan</a> if you wish to continue using our website with all the features you have.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_deletion_reminder.subject' => 'Your account will be deleted in {{DAYS_UNTIL_DELETION}} days - {{WEBSITE_TITLE}}',
'global.emails.user_deletion_reminder.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is a simple email to remind you that your account is going to be deleted in {{DAYS_UNTIL_DELETION}} days because your account has been inactive.<br /><br />If you wish to cancel this deletion, simply <a href="{{LOGIN_LINK}}">login</a> with your account and the deletion process will be stopped.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.auto_delete_inactive_users.subject' => 'Your account has been deleted - {{WEBSITE_TITLE}}',
'global.emails.auto_delete_inactive_users.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is a simple email to let you know that your account has been deleted because of being inactive for more than {{INACTIVITY_DAYS}} days.<br /><br />If you wish to re-gain access, you would need to <a href="{{REGISTER_LINK}}">register</a> another account with us.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.user_affiliate_withdrawal_approved.subject' => 'Affiliate withdrawal approved - {{WEBSITE_TITLE}}',
'global.emails.user_affiliate_withdrawal_approved.body' => 'Hey there <strong>{{NAME}}</strong>,<br /><br />This is a confirmation that your recent affiliate withdrawal of <strong>{{AMOUNT}} {{CURRENCY}}</strong> has been approved and your payment was sent for processing.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.team_member_create.subject' => 'You\'ve been invited to \'{{TEAM_NAME}}\' team - {{WEBSITE_TITLE}}',
'global.emails.team_member_create.body_login' => 'Hey there,<br /><br />You have been invited by <strong>{{USER_NAME}}</strong> ({{USER_EMAIL}}) to join the <strong>{{TEAM_NAME}}</strong> team on {{WEBSITE_TITLE}}.<br /><br />Click here to <a href="{{LOGIN_LINK}}">login and accept the invitation</a>.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.team_member_create.body_register' => 'Hey there,<br /><br />You have been invited by <strong>{{USER_NAME}}</strong> ({{USER_EMAIL}}) to join the <strong>{{TEAM_NAME}}</strong> team on {{WEBSITE_TITLE}}.<br /><br />Click here to <a href="{{REGISTER_LINK}}">register and accept the invitation</a>.<br /><br />Greetings from {{WEBSITE_TITLE}}.',
'global.emails.admin_new_user_notification.subject' => 'New user registered - {{WEBSITE_TITLE}}',
'global.emails.admin_new_user_notification.body' => 'A new user just registered to the website!<br /><br />Welcome to <strong>{{NAME}}</strong> ({{EMAIL}}) to your website!',
'global.emails.admin_delete_user_notification.subject' => 'User deleted his account - {{WEBSITE_TITLE}}',
'global.emails.admin_delete_user_notification.body' => 'A user just deleted his account from the website!<br /><br />All data of <strong>{{NAME}}</strong> ({{EMAIL}}) has been deleted.',
'global.emails.admin_new_payment_notification.subject' => 'New payment via {{PROCESSOR}} of {{TOTAL_AMOUNT}} {{CURRENCY}} - {{WEBSITE_TITLE}}',
'global.emails.admin_new_payment_notification.body' => '<strong>{{NAME}}</strong> ({{EMAIL}}) user just paid <strong>{{TOTAL_AMOUNT}} {{CURRENCY}}</strong> to your website!<br /><br />Here\'s to more earnings!',
'global.emails.admin_new_affiliate_withdrawal_notification.subject' => 'New affiliate withdrawal request for {{TOTAL_AMOUNT}} {{CURRENCY}} - {{WEBSITE_TITLE}}',
'global.emails.admin_new_affiliate_withdrawal_notification.body' => '<strong>{{NAME}}</strong> ({{EMAIL}}) user just submitted an affiliate withdrawal request for <strong>{{TOTAL_AMOUNT}} {{CURRENCY}}</strong> with the following note: "{{AFFILIATE_WITHDRAWAL_NOTE}}".<br /><br /><a href="{{ADMIN_AFFILIATE_WITHDRAWAL_LINK}}">View affiliate withdrawal</a>',
'global.emails.admin_new_domain_notification.subject' => 'New custom domain is pending approval - {{WEBSITE_TITLE}}',
'global.emails.admin_new_domain_notification.body' => '<strong>{{NAME}}</strong> ({{EMAIL}}) user\'s custom domain ({{DOMAIN_HOST}}) is now pending approval.<br /><br /> <a href="{{ADMIN_DOMAIN_UPDATE_LINK}}">View domain</a>',
'global.emails.admin_contact.subject' => '{{SUBJECT}} - {{NAME}} - {{WEBSITE_TITLE}}',
'global.emails.admin_contact.body' => '<strong>{{NAME}}</strong> - {{EMAIL}} has sent you the following message:<br /><br />{{MESSAGE}}',
'global.cookie_consent.menu' => 'Cookies',
'global.cookie_consent.header' => 'We use cookies 🍪',
'global.cookie_consent.subheader' => 'Hi, this website uses essential cookies to ensure its proper operation and tracking cookies to understand how you interact with it. The latter will be set only after consent. <button type="button" data-cc="c-settings" class="cc-link">Let me choose</button>',
'global.cookie_consent.modal.preferences.header' => 'Cookie preferences',
'global.cookie_consent.modal.header' => 'Cookie usage 📢',
'global.cookie_consent.modal.subheader' => 'We use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in/out whenever you want. For more details relative to cookies and other sensitive data, please read the full <a href="%s" class="cc-link">privacy policy</a>.',
'global.cookie_consent.modal.necessary.header' => 'Strictly necessary cookies',
'global.cookie_consent.modal.necessary.subheader' => 'These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.',
'global.cookie_consent.modal.analytics.header' => 'Performance and Analytics cookies',
'global.cookie_consent.modal.analytics.subheader' => 'These cookies allow the website to remember the choices you have made in the past.',
'global.cookie_consent.modal.targeting.header' => 'Advertisement and Targeting cookies',
'global.cookie_consent.modal.targeting.subheader' => 'These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you.',
'global.cookie_consent.accept_all' => 'Accept all',
'global.cookie_consent.reject_all' => 'Reject all',
'global.cookie_consent.save' => 'Save settings',
'global.cookie_consent.close' => 'Close',
'global.footer.copyright' => 'Copyright © %1$s %2$s.',
'global.plan_settings.enabled_qr_codes' => '%s QR code types',
'global.plan_settings.qr_codes_limit' => '%s saved QR codes',
'global.plan_settings.links_limit' => '%s dynamic links',
'global.plan_settings.pixels_limit' => '%s pixels',
'global.plan_settings.projects_limit' => '%s projects',
'global.plan_settings.domains_limit' => '%s custom domains',
'global.plan_settings.statistics_retention' => '%s days statistics retention',
'global.plan_settings.additional_domains_is_enabled' => 'Additional domains',
'global.plan_settings.additional_domains_is_enabled_help' => 'You get to choose from multiple domains when creating a dynamic QR code link.',
'global.plan_settings.password_protection_is_enabled' => 'Password protection',
'global.plan_settings.password_protection_is_enabled_help' => 'Your QR code links can be password protected if needed.',
'global.plan_settings.sensitive_content_is_enabled' => 'Sensitive content',
'global.plan_settings.sensitive_content_is_enabled_help' => 'Your QR code links can display a sensitive content warning if needed.',
'global.plan_settings.analytics_is_enabled' => 'Included analytics',
'global.plan_settings.analytics_is_enabled_help' => 'Great QR code links analytics to see how many visitors you get.',
'global.plan_settings.custom_url_is_enabled' => 'Custom back-half URL',
'global.plan_settings.custom_url_is_enabled_help' => 'You will be able to choose a custom URL when creating a dynamic QR code link.',
'global.plan_settings.api_is_enabled' => 'API access',
'global.plan_settings.api_is_enabled_help' => 'Get access to use the REST API.',
'global.plan_settings.affiliate_commission_percentage' => '%s affiliate percentage',
'global.plan_settings.affiliate_commission_percentage_help' => 'The percentage amount that you can earn with the affiliate program.',
'global.plan_settings.no_ads' => 'No Ads',
'global.plan_settings.no_ads_help' => 'No ads for everything related to your account and experience.',
'global.plan_settings.qr_reader_is_enabled' => 'QR Reader',
'global.plan_settings.qr_reader_is_enabled_help' => 'Get access to the QR reader functionality.',
'global.plan_settings.teams_limit' => '%s teams',
'global.plan_settings.team_members_limit' => '%s team members',
'duplicate_modal.header' => 'Duplicate',
'duplicate_modal.subheader' => 'Easily duplicate this resource with a click of a button.',
'delete_modal.header' => 'Delete',
'delete_modal.subheader1' => 'Deleting <strong>%s</strong> cannot be undone.',
'delete_modal.subheader2' => 'Deleting this cannot be undone.',
'statistics_reset_modal.header' => 'Reset statistics',
'statistics_reset_modal.subheader' => 'Reset the current selected statistics. This action cannot be undone.',
'l_link.password.title' => 'Password protected link',
'l_link.password.header' => 'Password protected link',
'l_link.password.subheader' => 'You must input the correct password to continue. Your password will be remembered for 30 days.',
'l_link.password.input' => 'Password',
'l_link.password.error_message' => 'The password is incorrect!',
'l_link.sensitive_content.title' => 'Sensitive content',
'l_link.sensitive_content.header' => 'Sensitive content',
'l_link.sensitive_content.subheader' => 'This link may contain sensitive content which some viewers may find offensive or disturbing.',
'l_link.sensitive_content.button' => 'Accept',
'qr.title' => 'QR code generator',
'qr.menu' => 'Generate QR code',
'qr.header' => 'QR code generator',
'qr.subheader' => 'Generate easy & customizable QR codes in minutes.',
'qr.title_dynamic' => '%1$s QR code generator',
'qr.header_dynamic' => '%1$s QR code generator',
'qr.subheader_dynamic' => 'Generate easy & customizable %1$s QR codes in minutes.',
'qr.register' => 'Sign up to save it',
'qr_reader.title' => 'QR code reader',
'qr_reader.menu' => 'QR code reader',
'qr_reader.header' => 'QR code reader',
'qr_reader.subheader' => 'Read already existing QR codes from image files.',
'qr_reader.image' => 'Image',
'qr_reader.extra_content' => 'Change me from the language manager in the admin panel. You can add extra helpful content here.',
'qr_reader.result' => 'Data',
'qr_reader.result.no_data' => 'No data found.',
'qr_codes.title' => 'QR codes',
'qr_codes.menu' => 'QR codes',
'qr_codes.breadcrumb' => 'QR codes',
'qr_codes.header' => 'QR codes',
'qr_codes.subheader' => 'Easily create customizable QR codes & remember them for later use.',
'qr_codes.create' => 'Create QR',
'qr_codes.print' => 'Print',
'qr_codes.info' => 'Make sure to test out your configured QR code before using it in production.',
'qr_codes.type.text' => 'Text',
'qr_codes.type.text_description' => 'Simple and clear text embedded into a QR code.',
'qr_codes.type.url' => 'URL',
'qr_codes.type.url_description' => 'Send someone to a link.',
'qr_codes.type.phone' => 'Phone',
'qr_codes.type.phone_description' => 'Get calls from people by scanning the QR code.',
'qr_codes.type.sms' => 'SMS',
'qr_codes.type.sms_description' => 'Get custom SMS messages from people by scanning the QR code.',
'qr_codes.type.email' => 'Email',
'qr_codes.type.email_description' => 'Get custom Emails from people by scanning the QR code.',
'qr_codes.type.whatsapp' => 'Whatsapp',
'qr_codes.type.whatsapp_description' => 'Get custom Whatsapp messages from people by scanning the QR code.',
'qr_codes.type.facetime' => 'Facetime',
'qr_codes.type.facetime_description' => 'Get Facetime calls from people by scanning the QR code.',
'qr_codes.type.location' => 'Location',
'qr_codes.type.location_description' => 'Embed location coordinates for people to get directions more easily.',
'qr_codes.type.wifi' => 'WiFi',
'qr_codes.type.wifi_description' => 'Create WiFi QR codes and let people connect to your WiFi more easily.',
'qr_codes.type.event' => 'Event',
'qr_codes.type.event_description' => 'Generate a custom life calendar event and embed it into a QR code.',
'qr_codes.type.crypto' => 'Crypto',
'qr_codes.type.crypto_description' => 'Get paid in crypto from people by scanning the QR code.',
'qr_codes.type.vcard' => 'Vcard',
'qr_codes.type.vcard_description' => 'Embed all your contact data into a digital business card.',
'qr_codes.type.paypal' => 'PayPal',
'qr_codes.type.paypal_description' => 'Create PayPal direct payment links.',
'qr_codes.table.name' => 'Name',
'qr_codes.table.type' => 'Type',
'qr_codes.input.name' => 'Name',
'qr_codes.input.type' => 'QR Type',
'qr_codes.input.text' => 'Text content',
'qr_codes.input.url' => 'URL',
'qr_codes.input.url_dynamic' => 'Dynamic QR code',
'qr_codes.input.url_dynamic_help' => 'Enabling this will create a QR code that points to an internal short link, which will redirect to any specified link, dynamically.',
'qr_codes.input.link_id' => 'URL',
'qr_codes.input.phone' => 'Phone number',
'qr_codes.input.sms' => 'Phone number',
'qr_codes.input.sms_body' => 'Prefilled message',
'qr_codes.input.email' => 'Email address',
'qr_codes.input.email_subject' => 'Prefilled subject',
'qr_codes.input.email_body' => 'Prefilled message',
'qr_codes.input.whatsapp' => 'Phone number',
'qr_codes.input.whatsapp_body' => 'Prefilled message',
'qr_codes.input.facetime' => 'Phone number or email address',
'qr_codes.input.location_latitude' => 'Latitude',
'qr_codes.input.location_longitude' => 'Longitude',
'qr_codes.input.wifi_ssid' => 'WiFi name (SSID)',
'qr_codes.input.wifi_encryption' => 'Encryption',
'qr_codes.input.wifi_encryption_nopass' => 'No encryption',
'qr_codes.input.wifi_password' => 'Password',
'qr_codes.input.wifi_is_hidden' => 'WiFi is hidden',
'qr_codes.input.event' => 'Event name',
'qr_codes.input.event_location' => 'GEO Location',
'qr_codes.input.event_start_datetime' => 'Starts on',
'qr_codes.input.event_end_datetime' => 'Ends on',
'qr_codes.input.event_timezone' => 'Timezone',
'qr_codes.input.event_url' => 'Event URL',
'qr_codes.input.event_note' => 'Notes',
'qr_codes.input.crypto' => 'Crypto',
'qr_codes.input.crypto_coin' => 'Coin',
'qr_codes.input.crypto_address' => 'Address',
'qr_codes.input.crypto_amount' => 'Amount',
'qr_codes.input.vcard_first_name' => 'First name',
'qr_codes.input.vcard_last_name' => 'Last name',
'qr_codes.input.vcard_email' => 'Email',
'qr_codes.input.vcard_url' => 'Website URL',
'qr_codes.input.vcard_company' => 'Company',
'qr_codes.input.vcard_job_title' => 'Job title',
'qr_codes.input.vcard_birthday' => 'Birthday',
'qr_codes.input.vcard_street' => 'Street address',
'qr_codes.input.vcard_city' => 'City',
'qr_codes.input.vcard_zip' => 'ZIP',
'qr_codes.input.vcard_region' => 'Region',
'qr_codes.input.vcard_country' => 'Country',
'qr_codes.input.vcard_note' => 'Note',
'qr_codes.input.vcard_phone_numbers' => 'Phone numbers',
'qr_codes.input.vcard_phone_number' => 'Phone number',
'qr_codes.input.vcard_socials' => 'Socials',
'qr_codes.input.vcard_social_label' => 'Label',
'qr_codes.input.vcard_social_value' => 'URL',
'qr_codes.input.paypal_type' => 'Type',
'qr_codes.input.paypal_type_buy_now' => 'Buy now',
'qr_codes.input.paypal_type_add_to_cart' => 'Add to cart',
'qr_codes.input.paypal_type_donation' => 'Donation',
'qr_codes.input.paypal_email' => 'PayPal email',
'qr_codes.input.paypal_title' => 'Product title',
'qr_codes.input.paypal_currency' => 'Currency code',
'qr_codes.input.paypal_price' => 'Price',
'qr_codes.input.paypal_thank_you_url' => 'Thank you URL',
'qr_codes.input.paypal_cancel_url' => 'Cancel URL',
'qr_codes.input.colors' => 'Colors',
'qr_codes.input.style' => 'Style',
'qr_codes.input.style.square' => 'Square',
'qr_codes.input.style.dot' => 'Dot',
'qr_codes.input.style.round' => 'Round',
'qr_codes.input.foreground_type' => 'Foreground type',
'qr_codes.input.foreground_type_color' => 'Color',
'qr_codes.input.foreground_type_gradient' => 'Gradient',
'qr_codes.input.foreground_color' => 'Foreground color',
'qr_codes.input.foreground_gradient_style' => 'Foreground gradient style',
'qr_codes.input.foreground_gradient_style_vertical' => 'Vertical',
'qr_codes.input.foreground_gradient_style_horizontal' => 'Horizontal',
'qr_codes.input.foreground_gradient_style_diagonal' => 'Diagonal',
'qr_codes.input.foreground_gradient_style_inverse_diagonal' => 'Inverse diagonal',
'qr_codes.input.foreground_gradient_style_radial' => 'Radial',
'qr_codes.input.foreground_gradient_one' => 'Foreground first color',
'qr_codes.input.foreground_gradient_two' => 'Foreground second color',
'qr_codes.input.background_color' => 'Background color',
'qr_codes.input.background_color_transparency' => 'Background color transparency',
'qr_codes.input.custom_eyes_color' => 'Custom eyes color',
'qr_codes.input.eyes_inner_color' => 'Eyes inner color',
'qr_codes.input.eyes_outer_color' => 'Eyes outer color',
'qr_codes.input.branding' => 'Branding',
'qr_codes.input.qr_code_logo' => 'Logo',
'qr_codes.input.qr_code_logo_size' => 'Logo size',
'qr_codes.input.options' => 'Options',
'qr_codes.input.size' => 'Size',
'qr_codes.input.margin' => 'Margin size',
'qr_codes.input.ecc' => 'Error correction capability',
'qr_codes.input.ecc_l' => 'L - low (7%)',
'qr_codes.input.ecc_m' => 'M - medium (15%)',
'qr_codes.input.ecc_q' => 'Q - high (25%)',
'qr_codes.input.ecc_h' => 'H - best (30%)',
'qr_codes.no_data' => 'No existing QR codes..',
'qr_codes.no_data_help' => 'Start by creating your QR code.',
'qr_code_create.breadcrumb' => 'Create QR code',
'qr_code_create.title' => 'Create QR code',
'qr_code_create.header' => 'Create QR code',
'qr_code_update.breadcrumb' => 'Edit QR code',
'qr_code_update.title' => 'Edit QR code',
'qr_code_update.header' => 'Edit QR code',
'links.breadcrumb' => 'Links',
'links.title' => 'Links',
'links.menu' => 'Links',
'links.create' => 'Create link',
'links.header' => 'Links',
'links.subheader' => 'Shortened links, dynamic, to easily manage dynamic QR codes.',
'links.table.link_id' => 'Link',
'links.table.stats' => 'Stats',
'links.input.location_url' => 'Destination URL',
'links.input.location_url_warning_linked_qr_code' => 'If you change the Destination URL, all your linked QR codes will redirect to the new URL.',
'links.input.domain_id' => 'Domain',
'links.input.url' => 'URL Alias',
'links.input.url_placeholder' => 'my-custom-url',
'links.input.url_warning_linked_qr_code' => 'If you change the URL Alias, all your printed linked QR codes will stop working.',
'links.input.is_enabled' => 'Link is active',
'links.input.temporary_url' => 'Temporary URL',
'links.input.schedule' => 'Schedule',
'links.input.schedule_help' => 'Set an exact date when the link will work.',
'links.input.start_date' => 'Start Date',
'links.input.end_date' => 'End Date',
'links.input.pageviews_limit' => 'Pageviews limit',
'links.input.pageviews_limit_help' => 'Only allow the link to work for a certain amount of pageviews.',
'links.input.expiration_url' => 'Expiration URL',
'links.input.expiration_url_help' => 'Visitors will be redirected to this URL after the main link expires.',
'links.input.targeting' => 'Targeting',
'links.input.targeting_type' => 'Targeting type',
'links.input.targeting_type_country_code' => 'Country',
'links.input.targeting_type_country_code_help' => 'Send visitors to different URLs based on their country location.',
'links.input.targeting_type_device_type' => 'Device type',
'links.input.targeting_type_device_type_help' => 'Send visitors to different URLs based on the device that they are using.',
'links.input.targeting_type_browser_language' => 'Browser language',
'links.input.targeting_type_browser_language_help' => 'Send visitors to different URLs based on their main browser language.',
'links.input.targeting_type_rotation' => 'Rotation & A/B Testing',
'links.input.targeting_type_rotation_help' => 'Randomly & equally split the visits to multiple URLs. Helpful when running A/B tests for example.',
'links.input.targeting_type_percentage' => 'Percentage chances',
'links.input.targeting_type_os_name' => 'Operating system',
'links.input.targeting_type_os_name_help' => 'Send visitors to different URLs based on the device operating system that they are using.',
'links.input.pixels' => 'Pixels',
'links.input.pixels_ids' => 'Pixels',
'links.input.protection' => 'Protection',
'links.input.password' => 'Password',
'links.input.password_help' => 'Require visitors to enter a password before accessing the link.',
'links.input.sensitive_content' => 'Sensitive content warning',
'links.input.sensitive_content_help' => 'Require users to confirm that they want to access your link and letting them know that the link might be sensitive.',
'links.input.advanced' => 'Advanced',
'links.error_message.url_exists' => 'This URL alias is already taken by someone else.',
'links.error_message.blacklisted_url' => 'This custom URL is not available for usage.',
'links.error_message.blacklisted_domain' => 'This domain is blacklisted.',
'links.error_message.blacklisted_keyword' => 'This custom URL is blacklisted.',
'links.error_message.blacklisted_location_url' => 'This URL has been blacklisted.',
'links.error_message.invalid_url' => 'This URL is invalid.',
'links.filters.search_by_url' => 'URL Alias',
'links.filters.order_by_url' => 'URL Alias',
'links.filters.search_by_location_url' => 'Location URL',
'links.filters.order_by_location_url' => 'Location URL',
'links.filters.order_by_pageviews' => 'Pageviews',
'links.no_data' => 'There are no links created',
'links.no_data_help' => 'Start by creating your first link.',
'link_delete_modal.header' => 'Delete link',
'link_delete_modal.subheader' => 'If you have this link associated with QR codes, your dynamic QR codes will not work anymore. This action cannot be undone.',
'link_create.breadcrumb' => 'Create link',
'link_create.title' => 'Create link',
'link_create.header' => 'Create a new link',
'link_create.info' => 'You can configure the link further after the creation.',
'link_update.breadcrumb' => 'Edit link',
'link_update.title' => 'Edit link - %s',
'link_update.header' => 'Edit %s link',
'link_statistics.breadcrumb' => 'Statistics',
'link_statistics.title' => 'Link statistics - %s',
'link_statistics.menu' => 'Statistics',
'link_statistics.header' => '%s statistics',
'link_statistics.link' => 'Statistics',
'link_statistics.pageviews' => 'Pageviews',
'link_statistics.visitors' => 'Visitors',
'link_statistics.statistics.overview' => 'Overview',
'link_statistics.statistics.overview_help' => '',
'link_statistics.statistics.entries' => 'Entries',
'link_statistics.statistics.entries_help' => 'All the entries that have been logged in a compact list.',
'link_statistics.statistics.latest' => 'Latest entries',
'link_statistics.statistics.view_more' => 'View more',
'link_statistics.statistics.country' => 'Countries',
'link_statistics.statistics.country_help' => 'Discover the countries that your visitors are from.',
'link_statistics.statistics.city_name' => 'Cities',
'link_statistics.statistics.city_name_from_country' => 'Cities of %s',
'link_statistics.statistics.city_name_help' => 'Discover the cities that your visitors are from.',
'link_statistics.statistics.os' => 'Operating systems',
'link_statistics.statistics.os_help' => 'Discover the operating systems that your visitors are using.',
'link_statistics.statistics.browser' => 'Browsers',
'link_statistics.statistics.browser_help' => 'Discover the browsers that your visitors are using.',
'link_statistics.statistics.language' => 'Languages',
'link_statistics.statistics.language_help' => 'Discover the browser languages that your visitors are having.',
'link_statistics.statistics.device' => 'Devices',
'link_statistics.statistics.device_help' => 'Discover the devices that your visitors are using.',
'link_statistics.statistics.referrer_host' => 'Referrers',
'link_statistics.statistics.referrer_path' => '%s referrer paths',
'link_statistics.statistics.referrer_help' => 'Discover where your traffic is coming from.',
'link_statistics.statistics.referrer_direct' => 'Direct',
'link_statistics.statistics.referrer_qr' => 'QR code',
'link_statistics.statistics.utms' => 'UTMs',
'link_statistics.statistics.utms_help' => 'Discover how your UTM marketing campaigns are performing.',
'link_statistics.statistics.utm_medium' => '%s utm mediums',
'link_statistics.statistics.utm_campaign' => '%s / %s utm sources',
'link_statistics.table.country' => 'Country',
'link_statistics.table.city' => 'City',
'link_statistics.table.os' => 'OS',
'link_statistics.table.device' => 'Device',
'link_statistics.table.browser' => 'Browser',
'link_statistics.table.referrer' => 'Referrer',
'link_statistics.no_data' => 'There are no statistics available for this date range',
'link_statistics.no_data_help' => 'Wait until you get some traffic and come back.',
'domains.breadcrumb' => 'Custom domains',
'domains.title' => 'Custom domains',
'domains.menu' => 'Custom domains',
'domains.header' => 'Custom domains',
'domains.subheader' => 'Here you can add your own custom domain to use with your dynamic QR code links.',
'domains.create' => 'Connect custom domain',
'domains.table.host' => 'Domain',
'domains.table.is_enabled' => 'Status',
'domains.table.is_enabled_pending' => 'Pending',
'domains.table.is_enabled_active' => 'Active',
'domains.input.help' => 'Make sure that your domain or subdomain has an A record pointing to %1$s or CNAME record pointing to %2$s.',
'domains.input.host' => 'Domain or subdomain',
'domains.input.host_placeholder' => 'domain.com',
'domains.input.custom_index_url' => 'Custom index URL',
'domains.input.custom_index_url_help' => 'Redirect to a specific URL when visitors land on the index of the domain.',
'domains.input.custom_index_url_placeholder' => 'https://domain.com/',
'domains.input.custom_not_found_url' => 'Custom 404 not found URL',
'domains.input.custom_not_found_url_help' => 'Redirect to a specific URL when visitors land on a not found page of the domain.',
'domains.input.custom_not_found_url_placeholder' => 'https://domain.com/404-page',
'domains.no_data' => 'There are no custom domains added',
'domains.no_data_help' => 'Start by linking your first custom domain.',
'domains.error_message.host_exists' => 'This custom domain already exists.',
'domain_create.breadcrumb' => 'Connect custom domain',
'domain_create.title' => 'Connect custom domain',
'domain_create.menu' => 'Connect custom domain',
'domain_create.header' => 'Connect custom domain',
'domain_create.success_message' => 'Your custom domain has been submitted for approval and processing.',
'domain_update.breadcrumb' => 'Edit custom domain',
'domain_update.title' => 'Edit custom domain',
'domain_update.menu' => 'Edit custom domain',
'domain_update.header' => 'Edit custom domain',
'domain_update.success_message' => 'Your custom domain update has been submitted for approval and processing.',
'domain_delete_modal.header' => 'Delete domain',
'domain_delete_modal.subheader' => 'By deleting the domain, all the data associated with the domain will be lost, including all the links associated with it. This action cannot be undone.',
'projects.title' => 'Projects',
'projects.menu' => 'Projects',
'projects.breadcrumb' => 'Projects',
'projects.header' => 'Projects',
'projects.subheader' => 'The easiest way to categorize your resources.',
'projects.create' => 'Create project',
'projects.project_id' => 'Project',
'projects.project_id_help' => 'A project will help you categorize your resources.',
'projects.table.name' => 'Name',
'projects.table.color' => 'Color',
'projects.input.name' => 'Name',
'projects.input.color' => 'Color',
'projects.input.color_help' => 'The color is used to help differentiate projects.',
'projects.no_data' => 'There are no projects for now',
'projects.no_data_help' => 'Start by creating your first project.',
'project_create.breadcrumb' => 'Create a new project',
'project_create.title' => 'Create a new project',
'project_create.header' => 'Create a new project',
'project_update.breadcrumb' => 'Edit project',
'project_update.title' => 'Edit project',
'project_update.header' => 'Edit project',
'pixels.title' => 'Pixels',
'pixels.menu' => 'Pixels',
'pixels.breadcrumb' => 'Pixels',
'pixels.header' => 'Pixels',
'pixels.subheader' => 'Tracking pixels help you gather data from your visitors and send them to the one of the available pixel tracking websites, helping you with analytics & conversion tracking for retargeting.',
'pixels.create' => 'Create pixel',
'pixels.pixel_id' => 'Pixel',
'pixels.table.name' => 'Name',
'pixels.table.type' => 'Type',
'pixels.input.name' => 'Name',
'pixels.input.type' => 'Type',
'pixels.input.pixel' => 'Pixel ID',
'pixels.input.pixel_help' => 'Enter the pixel id from this specific pixel type you chose.',
'pixels.no_data' => 'There are no pixels for now',
'pixels.no_data_help' => 'Start by creating your first pixel.',
'pixel_create.breadcrumb' => 'Create a new pixel',
'pixel_create.title' => 'Create a new pixel',
'pixel_create.header' => 'Create a new pixel',
'pixel_update.breadcrumb' => 'Edit pixel',
'pixel_update.title' => 'Edit pixel',
'pixel_update.header' => 'Edit pixel',
'page.breadcrumb' => 'Page',
'page.print' => 'Print',
'page.estimated_reading_time' => '%s read',
'page.total_views' => '%s views',
'pages.title' => 'Pages',
'pages.header' => 'Resources center',
'pages.subheader' => 'Here you can find useful page resources depending on your needs.',
'pages.index.breadcrumb' => 'Pages',
'pages.index.popular_pages' => 'Popular pages',
'pages.index.pages_categories.header' => 'Categories',
'pages.index.pages_categories.total_pages' => '%s available pages',
'pages.pages_category.breadcrumb' => 'Pages category',
'blog.title' => 'Blog',
'blog.breadcrumb' => 'Blog',
'blog.menu' => 'Blog',
'blog.header' => 'Blog',
'blog.subheader' => 'Get to learn & understand new things with the help of curated your blog posts.',
'blog.categories' => 'Categories',
'blog.popular' => 'Popular posts',
'blog.total_views' => '%s views',
'blog.estimated_reading_time' => '%s read',
'blog.blog_post.title' => '%s - Blog',
'blog.blog_posts_category.title' => '%s - Category - Blog',
'plan.breadcrumb' => 'Choose plan',
'plan.title' => 'Plan',
'plan.menu' => 'Pricing',
'plan.header_new' => 'Choose your plan',
'plan.subheader_new' => 'Select the most convenient plan for you.',
'plan.header_renew' => 'Renew or change your plan',
'plan.subheader_renew' => 'Select one plan to renew or change your subscription.',
'plan.header_upgrade' => 'Upgrade your plan',
'plan.subheader_upgrade' => 'Select one package to upgrade your subscription.',
'plan.custom_plan.monthly' => 'Monthly',
'plan.custom_plan.annual' => 'Annual',
'plan.custom_plan.lifetime' => 'Lifetime',
'plan.button.choose' => 'Choose plan',
'plan.button.renew' => 'Renew plan',
'plan.button.trial' => 'Try for %s days',
'plan.button.contact' => 'Contact us',
'plan.why.header' => 'Why us?',
'plan.why.subheader' => '',
'plan.why.one.header' => 'Customer service',
'plan.why.one.subheader' => 'Our support team will help you with any questions you may have regarding our product.',
'plan.why.two.header' => 'Privacy',
'plan.why.two.subheader' => 'We appreciate you and your privacy. This is why you control all the data that you bring with an account on our website.',
'plan.why.three.header' => 'Quality',
'plan.why.three.subheader' => 'We focus on delivering the best experience to you, as we fully understand how valuable time is.',
'plan.faq.header' => 'FAQ',
'plan.faq.subheader' => 'Here are the top most asked questions and their straight forward answers.',
'plan.faq.one.header' => 'What forms of payment do you accept?',
'plan.faq.one.text' => 'We accept payments via credit cards, PayPal & crypto as well.',
'plan.faq.two.header' => 'Can I cancel my subscription?',
'plan.faq.two.text' => 'Yes, you definitely can cancel your subscription and, you will still have access to all the features that you already paid for until the end of paid date range.',
'plan.faq.three.header' => 'Will I get an invoice?',
'plan.faq.three.text' => 'Yes, an invoice will be automatically generated for you after any payments from your account.',
'plan.faq.four.header' => 'Can I have a refund?',
'plan.faq.four.text' => 'We do offer refunds in case something goes wrong or you change your mind, simply contact us if needed.',
'pay_billing.breadcrumb' => 'Billing',
'pay_billing.title' => 'Billing',
'pay_billing.header' => 'Fill in your billing details',
'pay_billing.subheader' => 'We require your billing details for generating proper invoices & for tax handling, provide valid billing details only.',
'pay_billing.submit' => 'Update & continue to %s checkout',
'pay.breadcrumb' => '%s plan',
'pay.title' => 'Pay - %s',
'pay.plan_details' => 'What you\'ll get',
'pay.accept' => 'By continuing with your order you confirm that you read, understand & agree to the %1$s and %2$s of the site.',
'pay.free.free_already' => 'You already have the free plan activated.',
'pay.free.other_plan_not_expired' => 'Your current plan is not expired yet, you will get the free plan after it expires.',
'pay.trial.header' => 'Start the %s plan',
'pay.trial.subheader' => 'You are almost there, no strings attached.',
'pay.trial.trial_start' => 'Start my %s days trial',
'pay.trial.trial_skip' => 'Skip trial',
'pay.custom_plan.header' => 'Purchase the %s plan',
'pay.custom_plan.subheader' => 'You are almost there, complete the following form and checkout.',
'pay.custom_plan.paypal' => 'PayPal',
'pay.custom_plan.stripe' => 'Stripe',
'pay.custom_plan.offline_payment' => 'Offline payment',
'pay.custom_plan.coinbase' => 'Coinbase',
'pay.custom_plan.payu' => 'PayU',
'pay.custom_plan.paystack' => 'Paystack',
'pay.custom_plan.razorpay' => 'Razorpay',
'pay.custom_plan.mollie' => 'Mollie',
'pay.custom_plan.yookassa' => 'Yookassa',
'pay.custom_plan.crypto_com' => 'Crypto.com',
'pay.custom_plan.paddle' => 'Paddle',
'pay.custom_plan.payment_frequency' => 'Payment frequency',
'pay.custom_plan.monthly' => 'Monthly Payments',
'pay.custom_plan.annual' => 'Annual Payments',
'pay.custom_plan.annual_savings' => '%1$s %2$s',
'pay.custom_plan.lifetime' => 'Lifetime deal',
'pay.custom_plan.lifetime_help' => 'One time payment',
'pay.custom_plan.code_button' => 'I have a discount/redeemable code',
'pay.custom_plan.code' => 'Code',
'pay.custom_plan.payment_processor' => 'Payment method',
'pay.custom_plan.no_processor' => 'There are no payment processors available at the moment.',
'pay.custom_plan.offline_payment_instructions' => 'Payment instructions',
'pay.custom_plan.offline_payment_proof' => 'Proof of payment',
'pay.custom_plan.payment_type' => 'Type of payment',
'pay.custom_plan.one_time_type' => 'One Time Payment',
'pay.custom_plan.recurring_type' => 'Recurring Payment',
'pay.custom_plan.summary.header' => 'Order summary',
'pay.custom_plan.summary.plan' => 'Plan',
'pay.custom_plan.summary.payment_frequency' => 'Frequency',
'pay.custom_plan.summary.monthly' => 'Monthly',
'pay.custom_plan.summary.monthly_help' => 'Every 30 days',
'pay.custom_plan.summary.annual' => 'Yearly',
'pay.custom_plan.summary.annual_help' => 'Every 365 days',
'pay.custom_plan.summary.lifetime' => 'Lifetime',
'pay.custom_plan.summary.lifetime_help' => '',
'pay.custom_plan.summary.payment_processor' => 'Paid with',
'pay.custom_plan.summary.payment_type' => 'Type',
'pay.custom_plan.summary.one_time' => 'One time',
'pay.custom_plan.summary.one_time_help' => '',
'pay.custom_plan.summary.recurring' => 'Recurring',
'pay.custom_plan.summary.recurring_help' => 'Automatic billing',
'pay.custom_plan.summary.plan_price' => 'Price',
'pay.custom_plan.summary.discount' => 'Discount',
'pay.custom_plan.summary.tax_inclusive' => 'Inclusive',
'pay.custom_plan.summary.tax_exclusive' => 'Exclusive',
'pay.custom_plan.summary.total' => 'Total',
'pay.custom_plan.pay' => 'Checkout',
'pay.custom_plan.code_redeemable' => 'Redeem %s days for free.',
'pay.success_message.code' => 'Applied code for %s.',
'pay.error_message.code_invalid' => 'This code is invalid..',
'pay.error_message.code_used' => 'You have already used this code..',
'pay.error_message.canceled_payment' => 'It seems you\'ve canceled the payment for some reason.',
'pay.error_message.failed_payment' => 'Something didn\'t work quite right, please try again and if this persists contact the site admin.',
'pay.error_message.offline_payment_proof_missing' => 'You must upload a payment proof before submitting the payment order.',
'pay_thank_you.title' => 'Thank you',
'pay_thank_you.header' => 'Thank you!',
'pay_thank_you.button' => 'Go to my dashboard',
'pay_thank_you.plan_trial_start' => 'Your %s day trial period just started!',
'pay_thank_you.plan_redeemed' => 'You redeemed %s days!',
'pay_thank_you.plan_custom_will_start' => 'Your payment was sent and your new membership will be activated!',
'pay_thank_you.plan_custom_pending' => 'Your payment order was sent and your new membership will be activated if the proof will be accepted!',
'account.title' => 'Account',
'account.menu' => 'Account',
'account.plan.header' => '%s Plan',
'account.plan.subheader' => 'ends on %s',
'account.plan.upgrade_plan' => 'Upgrade Plan',
'account.plan.renew_plan' => 'Renew/Change Plan',
'account.settings.header' => 'Settings',
'account.settings.subheader' => 'Basic profile settings of your account.',
'account.settings.email' => 'Email',
'account.settings.name' => 'Name',
'account.settings.timezone' => 'Timezone',
'account.settings.timezone_help' => 'Your preferred way of displaying dates.',
'account.settings.anti_phishing_code' => 'Anti phishing code',
'account.settings.anti_phishing_code_help' => 'You\'ll get this code on each email that we send you, so you\'ll know it\'s a valid email from us.',
'account.billing.header' => 'Billing details',
'account.billing.subheader' => 'These billing details are used when generating invoices after a successful payment.',
'account.billing.subscription_id_active' => 'You have an active subscription, you can\'t change the billing details until the subscription expires or is cancelled.',
'account.billing.type' => 'Type',
'account.billing.type_personal' => 'Personal',
'account.billing.type_business' => 'Business',
'account.billing.name' => 'Name',
'account.billing.address' => 'Address',
'account.billing.city' => 'City',
'account.billing.county' => 'County',
'account.billing.country' => 'Country',
'account.billing.zip' => 'ZIP',
'account.billing.phone' => 'Phone',
'account.billing.tax_id' => 'Tax ID',
'account.change_password.header' => 'Change password',
'account.change_password.subheader' => 'If you do not want to change your password, do not fill any of those fields below.',
'account.change_password.current_password' => 'Current password',
'account.change_password.new_password' => 'New password',
'account.change_password.repeat_password' => 'Repeat password',
'account.twofa.header' => 'Two-factor authentication',
'account.twofa.subheader' => 'Use a mobile authentication app to get a verification code to enter every time you log in.',
'account.twofa.is_enabled' => 'Enable Two-factor authentication',
'account.twofa.qr' => '1. Scan QR code',
'account.twofa.qr_help' => 'Open the authentication app (ex: Authy, Google Authenticator) on your mobile device and scan the following QR code with your camera.',
'account.twofa.secret' => 'Can\'t scan the QR code?',
'account.twofa.secret_help' => 'Try inserting the following secret code into your app if you can\'t scan the QR code.',
'account.twofa.verify' => '2. Enter freshly generated token',
'account.twofa.verify_help' => 'To confirm that you setup your code properly, please enter the 6-digit token from your mobile app.',
'account.info_message.user_pending_email' => 'An email confirmation was sent to the new email address. Make sure to check and confirm it via email.',
'account.error_message.invalid_current_password' => 'Your current password is not valid.',
'account.error_message.twofa_check' => 'The token that you entered is not valid, please try again to setup the Two-factor authentication system.',
'account.success_message.account_updated' => 'Your account was updated.',
'account.success_message.password_updated' => 'Your account password was updated.',
'account_delete.title' => 'Delete account',
'account_delete.menu' => 'Delete account',
'account_delete.header' => 'Delete account',
'account_delete.subheader' => 'By deleting the account, all of your stored data will be deleted. This action is irreversible once done.',
'account_delete.current_password' => 'Current Password',
'account_delete.error_message.invalid_current_password' => 'Your current password is not valid.',
'account_delete.success_message' => 'Your account was fully deleted. We\'re sorry to see you go.',
'account_redeem_code.title' => 'Redeem code',
'account_redeem_code.menu' => 'Redeem code',
'account_redeem_code.header' => 'Redeem code',
'account_redeem_code.subheader' => 'If you own a redeeming code for a particular plan, you can redeem it right here.',
'account_redeem_code.plan_id' => 'Plan',
'account_redeem_code.code' => 'Code',
'account_redeem_code.success_message' => 'You redeemed %1$s days of the %2$s plan.',
'account_redeem_code.info_message' => 'Your current plan will be overwritten if you redeem a code that is different than your already existing plan.',
'account_redeem_code.error_message.code_invalid' => 'This code is invalid.',
'account_redeem_code.error_message.code_used' => 'You have already used this code.',
'account_plan.title' => 'Account Plan',
'account_plan.menu' => 'Plan',
'account_plan.header' => 'Account Plan',
'account_plan.plan.renews' => 'Plan will renew on %1$s via %2$s (%3$s %4$s)',
'account_plan.plan.expires' => 'Plan ends on %s',
'account_plan.cancel.header' => 'Cancel Subscription',
'account_plan.cancel.subheader' => 'By cancelling your subscription no further payments will be made. You will still have access to your features that you paid for until the expiration date.',
'account_plan.cancel.cancel' => 'Cancel Subscription',
'account_plan.cancel.confirm_message' => 'Are you sure you want to cancel your subscription?',
'account_plan.cancel.reason' => 'Cancelled from %s',
'account_plan.success_message.subscription_canceled' => 'Your recurring subscription was canceled.',
'account_payments.title' => 'Account Payments',
'account_payments.menu' => 'Payments',
'account_payments.header' => 'Account Payments',
'account_payments.subheader' => 'All the payments made on your account.',
'account_payments.payments.customer' => 'Customer',
'account_payments.payments.type' => 'Type',
'account_payments.payments.date' => 'Date',
'account_payments.payments.name' => 'Full Name',
'account_payments.payments.total_amount' => 'Total Amount',
'account_payments.payments.plan_id' => 'Plan',
'account_payments.payments.invoice' => 'Invoice',
'account_payments.payments.status_pending' => 'Pending approval',
'account_payments.payments.status_approved' => 'Approved',
'account_payments.payments.no_data' => 'No payments for now..',
'account_payments.filters.processor' => 'Processor',
'account_payments.filters.type' => 'Type',
'account_payments.filters.type_one_time' => 'One time',
'account_payments.filters.type_recurring' => 'Recurring',
'account_payments.filters.frequency' => 'Frequency',
'account_payments.filters.frequency_monthly' => 'Monthly',
'account_payments.filters.frequency_annual' => 'Annual',
'account_payments.filters.frequency_lifetime' => 'Lifetime',
'account_payments.filters.order_by_total_amount' => 'Total amount',
'account_logs.title' => 'Account logs',
'account_logs.menu' => 'Logs',
'account_logs.header' => 'Account logs',
'account_logs.subheader' => 'A list of your most important recorded activity.',
'account_logs.logs.type' => 'Type',
'account_logs.logs.ip' => 'IP',
'account_logs.logs.datetime' => 'Date',
'account_logs.logs.details' => 'Details',
'account_logs.logs.no_data' => 'Your account has no recorded logs..',
'account_logs.logs.no_data_help' => 'Here you will be able to find important log entries regarding your account.',
'account_api.title' => 'Account API',
'account_api.menu' => 'API',
'account_api.header' => 'API',
'account_api.subheader' => 'Do not share your API key with unauthorized people.',
'account_api.api_key' => 'API Key',
'account_api.button' => 'Regenerate API Key',
'account_api.success_message' => 'Your API key was regenerated successfully.',
'teams_system.title' => 'Teams system',
'teams_system.menu' => 'Teams system',
'teams_system.breadcrumb' => 'Teams system',
'teams_system.header' => 'Teams system',
'teams.title' => 'My teams',
'teams.menu' => 'My teams',
'teams.breadcrumb' => 'My teams',
'teams.header' => ' My teams',
'teams.subheader' => 'Create, invite and manage your teams.',
'teams.create' => 'Create team',
'teams.input.name' => 'Name',
'teams.table.members' => 'Members',
'teams.no_data' => 'There are no teams available',
'teams.no_data_help' => 'Start by creating your first team & invite people.',
'team.breadcrumb' => 'Team',
'team.title' => 'Team - %s',
'team.header' => '%s team',
'team_create.breadcrumb' => 'Create team',
'team_create.title' => 'Create team',
'team_create.header' => 'Create team',
'team_update.breadcrumb' => 'Update team',
'team_update.title' => 'Update team',
'team_update.header' => 'Update team',
'team_members.create' => 'Invite member',
'team_members.input.user_email' => 'Email',
'team_members.input.access' => 'Access',
'team_members.input.access_help' => 'Set what permissions you want to hand out to the user.',
'team_members.input.access.read' => 'View',
'team_members.input.access.create' => 'Create',
'team_members.input.access.update' => 'Update',
'team_members.input.access.delete' => 'Delete',
'team_members.table.member' => 'Member',
'team_members.table.status' => 'Status',
'team_members.table.status_invited' => 'Invited',
'team_members.table.status_accepted' => 'Accepted',
'team_members.table.datetime' => 'Invited on',
'team_members.info_message.access' => 'The invited user will not have access to any account related pages, such as the account settings, payments, logs...etc.',
'team_members.error_message.email_exists' => 'This email is already invited.',
'team_members.no_data' => 'There are no team members available',
'team_members.no_data_help' => 'Start by inviting your first member.',
'team_member_create.breadcrumb' => 'Invite team member',
'team_member_create.title' => 'Invite team member - %s',
'team_member_create.header' => 'Invite team member',
'team_member_create.submit' => 'Invite via Email',
'team_member_create.success_message' => '%s has been successfully invited.',
'team_member_update.breadcrumb' => 'Update team member',
'team_member_update.title' => 'Update team member - %s',
'team_member_update.header' => 'Update team member',
'teams_member.title' => 'Teams member',
'teams_member.menu' => 'Teams member',
'teams_member.breadcrumb' => 'Teams member',
'teams_member.header' => ' Teams member',
'teams_member.subheader' => 'Manage the teams you\'re invited / a member of.',
'teams_member.table.team' => 'Team',
'teams_member.table.datetime' => 'Invited on',
'teams_member.no_data' => 'There are no teams available',
'teams_member.no_data_help' => 'You\'re not invited to any team yet.',
'teams_member_delete_modal.header' => 'Leave team',
'teams_member_delete_modal.subheader' => 'This action cannot be undone.',
'teams_member_join_modal.menu' => 'Join team',
'teams_member_join_modal.header' => 'Join team',
'teams_member_join_modal.subheader' => 'Accept & join the invitation of the team.',
'teams_member_login_modal.menu' => 'Login',
'teams_member_login_modal.header' => 'Login team',
'teams_member_login_modal.subheader' => 'Log into the team and start managing it.',
'referrals.title' => 'Referrals',
'referrals.menu' => 'Referrals',
'referrals.invite.header' => 'Invite people',
'referrals.invite.subheader_once' => 'Invite people to %s with the following link and get %s from their first payment to the platform.',
'referrals.invite.subheader_forever' => 'Invite people to %s with the following link and get %s from all their payments to the platform.',
'referrals.invite.referral_key' => 'Referral link',
'referrals.invite.referral_key_help' => 'You can add the %s parameter to any link of our website.',
'referrals.invite.button' => 'Copy referral link',
'referrals.statistics.header' => 'Statistics',
'referrals.statistics.referrals' => 'Referrals',
'referrals.statistics.referrals_help' => 'People who have signed up using your referral link.',
'referrals.statistics.converted_referrals' => 'Paying referrals',
'referrals.statistics.converted_referrals_help' => 'People who have signed up & paid for a plan at least once.',
'referrals.statistics.pending_affiliate_commissions' => 'Pending commissions',
'referrals.statistics.pending_affiliate_commissions_help' => 'All payments are held for 30 days for proper confirmation before they are approved.',
'referrals.statistics.approved_affiliate_commissions' => 'Approved commissions',
'referrals.statistics.approved_affiliate_commissions_help' => 'All payments that have been approved, which are ready to be withdrawn.',
'referrals.withdraw.header' => 'Withdraw',
'referrals.withdraw.subheader' => 'Once you reach at least %s, you can create a withdrawal request.',
'referrals.withdraw.amount' => 'Amount',
'referrals.withdraw.is_paid' => 'Status',
'referrals.withdraw.is_paid_paid' => 'Paid',
'referrals.withdraw.is_paid_pending' => 'Pending',
'referrals.withdraw.success_message' => 'Your withdrawal request has been sent for approval and processing.',
'invoice.title' => 'Invoice %s',
'invoice.print' => 'Print',
'invoice.invoice' => 'INVOICE',
'invoice.invoice_nr' => 'Invoice Nr',
'invoice.invoice_date' => 'Date',
'invoice.vendor' => 'Vendor',
'invoice.customer' => 'Customer',
'invoice.notes' => 'Additional notes',
'invoice.name' => 'Name',
'invoice.address' => 'Address',
'invoice.city' => 'City',
'invoice.county' => 'County',
'invoice.zip' => 'ZIP',
'invoice.country' => 'Country',
'invoice.email' => 'Email',
'invoice.phone' => 'Phone',
'invoice.tax_id' => 'Tax ID',
'invoice.table.item' => 'Item',
'invoice.table.amount' => 'Amount',
'invoice.table.plan' => '%s Plan',
'invoice.table.frequency' => '%s access.',
'invoice.table.frequency_monthly' => '30 days',
'invoice.table.frequency_annual' => '1 year',
'invoice.table.frequency_lifetime' => 'Lifetime',
'invoice.table.code' => 'Discount',
'invoice.table.code_help' => 'Code used: %s',
'invoice.table.total' => 'Total',
'invoice.table.paid_via' => 'Paid via %s',
'login.menu' => 'Sign in',
'login.title' => 'Sign in',
'login.header' => 'Sign in',
'login.form.email' => 'Email',
'login.form.password' => 'Password',
'login.form.twofa_token' => 'Two-factor token',
'login.form.remember_me' => 'Remember me',
'login.form.login' => 'Login',
'login.form.verify' => 'Verify',
'login.display.register' => 'Don\'t have an account? %s',
'login.display.register_help' => 'Register',
'login.display.lost_password' => 'Lost Password',
'login.display.resend_activation' => 'Resend Activation',
'login.display.facebook' => 'Facebook Login',
'login.display.google' => 'Google Login',
'login.display.twitter' => 'Twitter Login',
'login.display.discord' => 'Discord Login',
'login.info_message.twofa_token' => 'Two-factor authentication is required.',
'login.info_message.logged_in' => 'Welcome back, %s.',
'login.error_message.twofa_token' => 'Your two-factor authentication token is invalid.',
'login.error_message.wrong_login_credentials' => 'Your login combination is invalid.',
'login.error_message.user_not_active' => 'Your account is not confirmed or banned.',
'login.error_message.email_is_null' => 'Your social account doesn\'t have an email associated with it.',
'lost_password.title' => 'Lost password',
'lost_password.header' => 'Lost password',
'lost_password.subheader' => 'We will send you an email with a magic recovery link to reset your password.',
'lost_password.return' => 'Return to Login',
'lost_password.email' => 'Email',
'lost_password.submit' => 'Send me a recovery link',
'lost_password.success_message' => 'We\'ve sent you an email if there is an account registered with it.',
'resend_activation.title' => 'Resend activation',
'resend_activation.header' => 'Resend activation email',
'resend_activation.subheader' => 'Mails can get lost, but we can send you another activation email for your account.',
'resend_activation.return' => 'Return to Login',
'resend_activation.email' => 'Email',
'resend_activation.submit' => 'Send me the activation email',
'resend_activation.success_message' => 'We\'ve sent you an email if there is an account registered with it.',
'reset_password.title' => 'Set a new password',
'reset_password.header' => 'Set a new password',
'reset_password.subheader' => 'For better security, make sure your new password is strong.',
'reset_password.return' => 'Return to Login',
'reset_password.new_password' => 'New password',
'reset_password.repeat_password' => 'Repeat your new password',
'reset_password.submit' => 'Set password',
'reset_password.success_message' => 'Your new password is set.',
'activate_user.user_activation' => 'Your account has been confirmed and is now active.',
'activate_user.user_pending_email' => 'Your new email address has been confirmed.',
'register.title' => 'Sign up',
'register.menu' => 'Sign up',
'register.header' => 'Sign up',
'register.form.name' => 'Name',
'register.form.email' => 'Email',
'register.form.password' => 'Password',
'register.form.repeat_password' => 'Repeat Password',
'register.form.accept' => 'I confirm that I have read and understood the %1$s and %2$s of the site.',
'register.form.register' => 'Register',
'register.display.login' => 'Already have an account? %s',
'register.display.login_help' => 'Sign in',
'register.error_message.name_length' => 'Name must be between 1 and 64 characters.',
'register.error_message.email_exists' => 'This email address is already in use.',
'register.error_message.blacklisted_domain' => 'This email domain has been blacklisted.',
'register.error_message.blacklisted_country' => 'Your country has been blacklisted.',
'register.success_message.registration' => 'Check your email for the activation link of your account.',
'register.success_message.login' => 'Welcome to our platform, we are grateful to have you here.',
'dashboard.breadcrumb' => 'Dashboard',
'dashboard.title' => 'Dashboard',
'dashboard.menu' => 'Dashboard',
'dashboard.header' => 'Dashboard',
'dashboard.view_all' => 'View all',
'dashboard.qr_codes_header' => 'Latest QR codes',
'dashboard.total_qr_codes' => '%s QR codes',
'dashboard.total_links' => '%s Links',
'dashboard.total_projects' => '%s projects',
'dashboard.total_pixels' => '%s pixels',
'dashboard.total_domains' => '%s domains',
'index.breadcrumb' => 'Home',
'index.menu' => 'Home',
'index.title' => 'QR code Generator',
'index.meta_description' => '',
'index.meta_keywords' => '',
'index.header' => 'QR code Generator',
'index.subheader' => 'Generate simple & advanced QR codes. Easy, customizable & trackable.',
'index.qr' => 'Generate QR codes',
'index.register' => 'Sign up',
'index.qr_templates.header' => 'QR templates',
'index.qr_templates.subheader' => 'You get %s built-in QR code templates to get you started right away.',
'index.privacy.header' => 'Privacy',
'index.privacy.subheader' => 'We do not store any data of your created QR codes, except the ones that you save in your account willingly.',
'index.customization.header' => 'Highly customizable',
'index.customization.subheader' => 'Create the QR code you need, brand it with your own colors & logo.',
'index.pixels.header' => 'Tracking pixels',
'index.pixels.subheader' => '%s tracking pixels available.',
'index.domains.header' => 'Custom domains',
'index.domains.subheader' => 'Connect your own domain or use our predefined ones.',
'index.projects.header' => 'Projects',
'index.projects.subheader' => 'Easiest way to categorize your managed resources.',
'index.pricing.header' => 'Simple, transparent pricing.',
'index.pricing.subheader' => 'Choose the plan that is right for you and your budget.',
'index.static.header' => 'Static QR codes',
'index.static.subheader' => 'Static QR codes are fixed, meaning that all the data is directly embedded into the QR code. Once generated and printed for real-world usage, it can\'t be changed.',
'index.static.feature1' => 'Fully customizable',
'index.static.feature2' => 'No scan limit',
'index.static.feature3' => 'No data saved on our servers',
'index.dynamic.header' => 'Dynamic QR codes',
'index.dynamic.subheader' => 'Dynamic QR codes for links, allow you to change the destination of the QR code on-the-fly, whenever you want. It combines multiple technologies to make this happen in the background with the help of our Links tool.',
'index.dynamic.feature1' => 'Advanced scan statistics',
'index.dynamic.feature2' => 'Change URL destination dynamically',
'index.dynamic.feature3' => 'Scheduling, expiration limits, A/B Rotation',
'index.dynamic.feature4' => 'Password protection',
'index.dynamic.feature5' => 'Country, device & language re-targeting',
'index.qr_codes.header' => 'QR code types',
'index.qr_codes.subheader' => 'A large array of QR code templates to choose from and get started.',
'index.qr_codes.choose' => 'Generate %s QR code',
'index.cta.header' => 'Get started',
'index.cta.subheader' => 'Super easy & highly customizable static or dynamic QR codes.',
'index.cta.pricing' => 'Pricing',
'index.cta.register' => 'Sign up',
'api.error_message.no_bearer' => 'The request is missing the Bearer Authentication header.',
'api.error_message.no_access' => 'You do not have access to the API.',
'api.error_message.rate_limit' => 'You reached the limit of requests in one minute, please wait.',
'api.error_message.not_found' => 'The resource you are looking for does not exist.',
'api_documentation.menu' => 'API Documentation',
'api_documentation.breadcrumb' => 'API Documentation',
'api_documentation.title' => 'API Documentation',
'api_documentation.header' => 'API Documentation',
'api_documentation.subheader' => 'This is the documentation for the available API endpoints, which are built around the <strong>REST architecture</strong>. All the API endpoints will return a <strong>JSON response</strong> with the standard <strong>HTTP response codes</strong> and need a <strong>Bearer Authentication via an API Key</strong>.',
'api_documentation.endpoint' => 'Endpoint',
'api_documentation.example' => 'Example',
'api_documentation.response' => 'Response example',
'api_documentation.api_key' => 'API Key',
'api_documentation.base_url' => 'Base URL',
'api_documentation.parameters' => 'Parameters',
'api_documentation.required' => 'Required',
'api_documentation.optional' => 'Optional',
'api_documentation.details' => 'Details',
'api_documentation.description' => 'Description',
'api_documentation.string' => 'String',
'api_documentation.int' => 'Integer',
'api_documentation.float' => 'Float',
'api_documentation.boolean' => 'Boolean',
'api_documentation.file' => 'File',
'api_documentation.array' => 'Array',
'api_documentation.read_all' => 'Retrieve all',
'api_documentation.read' => 'Retrieve one',
'api_documentation.create' => 'Create',
'api_documentation.update' => 'Update',
'api_documentation.delete' => 'Delete',
'api_documentation.authentication.header' => 'Authentication',
'api_documentation.authentication.subheader' => 'All the API endpoints require an API key sent by the <strong>Bearer Authentication method.</strong>',
'api_documentation.filters.page' => 'The page number that you want results from. Defaults to <code>1</code>.',
'api_documentation.filters.results_per_page' => 'How many results you want per page. Allowed values are: %1$s. Defaults to <code>%2$s</code>.',
'api_documentation.filters.search' => 'The search string.',
'api_documentation.filters.search_by' => 'What field are you searching by. Allowed values are: %s.',
'api_documentation.filters.order_by' => 'What field to order the results by. Allowed values are: %s.',
'api_documentation.filters.order_by_type' => 'The ordering of the results. Allowed values are: <code>ASC</code> for ascending ordering, and <code>DESC</code> for descending ordering.',
'api_documentation.teams.breadcrumb' => 'Teams',
'api_documentation.teams.title' => 'Teams API Documentation',
'api_documentation.teams.header' => 'Teams',
'api_documentation.team_members.breadcrumb' => 'Team members',
'api_documentation.team_members.title' => 'Team members API Documentation',
'api_documentation.team_members.header' => 'Team members',
'api_documentation.teams_member.breadcrumb' => 'Teams member',
'api_documentation.teams_member.title' => 'Teams member API Documentation',
'api_documentation.teams_member.header' => 'Teams member',
'api_documentation.user.breadcrumb' => 'User',
'api_documentation.user.title' => 'User API Documentation',
'api_documentation.user.header' => 'User',
'api_documentation.qr_codes.breadcrumb' => 'QR codes',
'api_documentation.qr_codes.title' => 'QR codes API Documentation',
'api_documentation.qr_codes.header' => 'QR codes',
'api_documentation.links.breadcrumb' => 'Links',
'api_documentation.links.title' => 'Links API Documentation',
'api_documentation.links.header' => 'Links',
'api_documentation.links.url' => 'The URL alias of the generated link. Leave empty for a randomly generated one.',
'api_documentation.links.location_url' => 'The URL of the destination.',
'api_documentation.statistics.breadcrumb' => 'Link statistics',
'api_documentation.statistics.title' => 'Link statistics API Documentation',
'api_documentation.statistics.header' => 'Link statistics',
'api_documentation.statistics.start_date' => 'Start date in <code>Y-m-d</code> format.',
'api_documentation.statistics.end_date' => 'End date in <code>Y-m-d</code> format.',
'api_documentation.statistics.type' => 'Type of data to be returned. Allowed values are: <code>overview</code>, <code>referrer_host</code>, <code>referrer_path</code>, <code>country_code</code>, <code>city_name</code>, <code>os_name</code>, <code>browser_name</code>, <code>device_type</code>, <code>browser_language</code>, <code>utm_source</code>, <code>utm_medium</code>, <code>utm_campaign</code>. Defaults to <code>overview</code>.',
'api_documentation.statistics.country_code' => 'Parameter only available for the <code>city_name</code> type.',
'api_documentation.statistics.utm_source' => 'Parameter only available for the <code>utm_medium</code> and <code>utm_campaign</code> type.',
'api_documentation.statistics.utm_medium' => 'Parameter only available for the <code>utm_campaign</code> type.',
'api_documentation.projects.breadcrumb' => 'Projects',
'api_documentation.projects.title' => 'Projects API Documentation',
'api_documentation.projects.header' => 'Projects',
'api_documentation.pixels.breadcrumb' => 'Pixels',
'api_documentation.pixels.title' => 'Pixels API Documentation',
'api_documentation.pixels.header' => 'Pixels',
'api_documentation.pixels.type' => 'Allowed values are: %s.',
'api_documentation.domains.breadcrumb' => 'Custom domains',
'api_documentation.domains.title' => 'Custom domains API Documentation',
'api_documentation.domains.header' => 'Custom domains',
'api_documentation.payments.breadcrumb' => 'Payments',
'api_documentation.payments.title' => 'Payments API Documentation',
'api_documentation.payments.header' => 'Payments',
'api_documentation.users_logs.breadcrumb' => 'Logs',
'api_documentation.users_logs.title' => 'Logs API Documentation',
'api_documentation.users_logs.header' => 'Logs',
'contact.breadcrumb' => 'Contact',
'contact.title' => 'Contact',
'contact.menu' => 'Contact',
'contact.header' => 'Contact us',
'contact.subheader' => 'Get in touch with us via email.',
'contact.input.email' => 'Email address',
'contact.input.name' => 'Full name',
'contact.input.subject' => 'Subject',
'contact.input.message' => 'Message',
'contact.success_message' => 'Your message was sent! We\'ll get back to you shortly.',
'affiliate.breadcrumb' => 'Affiliate',
'affiliate.title' => 'Affiliate',
'affiliate.menu' => 'Affiliate',
'affiliate.header' => 'The affiliates program',
'affiliate.subheader' => 'Easiest way to earn commission from people that you bring to the platform.',
'affiliate.commission_percentage.header' => 'Variable commission',
'affiliate.commission_percentage.subheader_once' => 'Earn commission from the first payment of any user that you bring to the platform.',
'affiliate.commission_percentage.subheader_forever' => 'Earn commission from all of the payments of any user that you bring to the platform.',
'affiliate.minimum_withdrawal_amount.header' => '%s minimum withdrawal',
'affiliate.minimum_withdrawal_amount.subheader' => 'Once your approved balance reaches the minimum withdrawal amount, you can request a withdrawal.',
'affiliate.how.header' => 'How does it work?',
'affiliate.how.one' => 'Sign up',
'affiliate.how.one_help' => 'Simply register for an account on our platform.',
'affiliate.how.two' => 'Share your link',
'affiliate.how.two_help' => 'Start promoting your referral link and bring new users.',
'affiliate.how.three' => 'Start earning',
'affiliate.how.three_help' => 'Once your referred users start paying, you\'ll get paid as well.',
'affiliate.how.four' => 'Withdraw your money',
'affiliate.how.four_help' => 'Request a withdrawal and you\'ll get paid.',
'affiliate.cta.header' => 'Start earning money 💰',
'affiliate.cta.subheader' => 'Create an account and start in just a few minutes.',
'affiliate.cta.register' => 'Sign up',
'notfound.title' => 'Not found',
'notfound.header' => 'Page not found',
'notfound.subheader' => 'Sorry, we couldn\'t find the page you\'re looking for.',
'notfound.button' => 'Go back home',
```
```