@flitsmeister/design-system 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/npm-publish.yml +34 -0
- package/README.md +3 -0
- package/package.json +65 -0
- package/postcss.config.js +20 -0
- package/svgo.config.js +37 -0
- package/tailwind.config.js +146 -0
- package/web/.eslintrc +5 -0
- package/web/App.vue +60 -0
- package/web/components/CookieConsent.vue +115 -0
- package/web/components/Flag.vue +47 -0
- package/web/components/Icon.vue +31 -0
- package/web/components/LanguageSwitcher.vue +77 -0
- package/web/components/PermissionToggle.vue +49 -0
- package/web/components/button-with-loader.vue +26 -0
- package/web/components/fmxButton.vue +225 -0
- package/web/components/fmxInput.vue +133 -0
- package/web/components/loader.vue +22 -0
- package/web/components/modal.vue +61 -0
- package/web/components/navbar.vue +69 -0
- package/web/icons/bold/add.svg +3 -0
- package/web/icons/bold/check.svg +3 -0
- package/web/icons/bold/checkbox-checked.svg +4 -0
- package/web/icons/bold/checkbox-unchecked.svg +3 -0
- package/web/icons/bold/chevron-backward.svg +3 -0
- package/web/icons/bold/chevron-down.svg +3 -0
- package/web/icons/bold/chevron-forward.svg +3 -0
- package/web/icons/bold/chevron-up.svg +3 -0
- package/web/icons/bold/close-1.svg +3 -0
- package/web/icons/bold/close.svg +4 -0
- package/web/icons/bold/dot.svg +3 -0
- package/web/icons/bold/open-external.svg +3 -0
- package/web/icons/bold/prominent-1.svg +3 -0
- package/web/icons/bold/prominent.svg +3 -0
- package/web/icons/bold/question.svg +4 -0
- package/web/icons/bold/remove.svg +3 -0
- package/web/icons/bold/search.svg +3 -0
- package/web/icons/bold/spinner.svg +3 -0
- package/web/icons/bold/warning.svg +3 -0
- package/web/icons/duotone/check.svg +4 -0
- package/web/icons/filled/achievements.svg +3 -0
- package/web/icons/filled/add.svg +3 -0
- package/web/icons/filled/app-settings.svg +3 -0
- package/web/icons/filled/calendar.svg +7 -0
- package/web/icons/filled/car-simplified.svg +3 -0
- package/web/icons/filled/check.svg +3 -0
- package/web/icons/filled/clock.svg +3 -0
- package/web/icons/filled/close.svg +3 -0
- package/web/icons/filled/control.svg +7 -0
- package/web/icons/filled/danger.svg +7 -0
- package/web/icons/filled/delete.svg +3 -0
- package/web/icons/filled/deviceOne.svg +3 -0
- package/web/icons/filled/deviceTwo.svg +3 -0
- package/web/icons/filled/disputeFine.svg +3 -0
- package/web/icons/filled/email.svg +3 -0
- package/web/icons/filled/gasPrices.svg +3 -0
- package/web/icons/filled/hazard.svg +3 -0
- package/web/icons/filled/highway.svg +3 -0
- package/web/icons/filled/info.svg +4 -0
- package/web/icons/filled/lock-close.svg +3 -0
- package/web/icons/filled/lock-open.svg +3 -0
- package/web/icons/filled/lock.svg +3 -0
- package/web/icons/filled/microphone.svg +4 -0
- package/web/icons/filled/notificaiton-unread.svg +4 -0
- package/web/icons/filled/notificaiton.svg +3 -0
- package/web/icons/filled/parking.svg +3 -0
- package/web/icons/filled/play.svg +8 -0
- package/web/icons/filled/question.svg +3 -0
- package/web/icons/filled/rating-empty.svg +3 -0
- package/web/icons/filled/rating-full.svg +3 -0
- package/web/icons/filled/rating-half.svg +4 -0
- package/web/icons/filled/remove.svg +3 -0
- package/web/icons/filled/return-location.svg +3 -0
- package/web/icons/filled/support.svg +3 -0
- package/web/icons/filled/toll.svg +3 -0
- package/web/icons/filled/tripHistory.svg +3 -0
- package/web/icons/filled/truck.svg +3 -0
- package/web/icons/filled/user-pin.svg +3 -0
- package/web/icons/filled/user-profile.svg +3 -0
- package/web/icons/filled/warning.svg +4 -0
- package/web/icons/filled/zone-default.svg +3 -0
- package/web/icons/filled/zone-indoor.svg +3 -0
- package/web/icons/filled/zone-street.svg +3 -0
- package/web/icons/stroke/arrow-Down.svg +3 -0
- package/web/icons/stroke/arrow-Up.svg +3 -0
- package/web/icons/stroke/arrow-left.svg +3 -0
- package/web/icons/stroke/arrow-right.svg +3 -0
- package/web/icons/stroke/check.svg +3 -0
- package/web/icons/stroke/checkbox-checked.svg +4 -0
- package/web/icons/stroke/checkbox-unchecked.svg +3 -0
- package/web/icons/stroke/chevron-backward.svg +3 -0
- package/web/icons/stroke/chevron-down.svg +3 -0
- package/web/icons/stroke/chevron-forward.svg +3 -0
- package/web/icons/stroke/chevron-up.svg +3 -0
- package/web/icons/stroke/clock.svg +3 -0
- package/web/icons/stroke/close-1.svg +3 -0
- package/web/icons/stroke/close.svg +4 -0
- package/web/icons/stroke/download.svg +4 -0
- package/web/icons/stroke/email.svg +4 -0
- package/web/icons/stroke/hamburger.svg +3 -0
- package/web/icons/stroke/login.svg +4 -0
- package/web/icons/stroke/logout.svg +3 -0
- package/web/icons/stroke/more.svg +5 -0
- package/web/icons/stroke/open-external.svg +3 -0
- package/web/icons/stroke/question.svg +4 -0
- package/web/icons/stroke/search.svg +3 -0
- package/web/icons/stroke/spinner.svg +3 -0
- package/web/icons/stroke/warning.svg +3 -0
- package/web/index.html +25 -0
- package/web/index.js +55 -0
- package/web/locales/da.json +197 -0
- package/web/locales/de.json +197 -0
- package/web/locales/en.json +333 -0
- package/web/locales/fi.json +197 -0
- package/web/locales/fr.json +197 -0
- package/web/locales/nl.json +333 -0
- package/web/locales/no.json +197 -0
- package/web/locales/pl.json +197 -0
- package/web/locales/sv.json +197 -0
- package/web/pages/buttons.html +32 -0
- package/web/pages/buttons.vue +18 -0
- package/web/pages/colors.html +32 -0
- package/web/pages/colors.vue +29 -0
- package/web/pages/icons.vue +49 -0
- package/web/pages/index.html +25 -0
- package/web/pages/index.vue +15 -0
- package/web/pages/input.html +47 -0
- package/web/pages/input.vue +34 -0
- package/web/router.js +20 -0
- package/web/static/apple-touch-icon.png +0 -0
- package/web/static/download.png +0 -0
- package/web/static/facebook-login.png +0 -0
- package/web/static/facebook-migrate.png +0 -0
- package/web/static/favicon-16x16.png +0 -0
- package/web/static/favicon-32x32.png +0 -0
- package/web/static/favicon.ico +0 -0
- package/web/static/fleet-bg.png +0 -0
- package/web/static/flitsmeister-logo-small.png +0 -0
- package/web/static/flitsmeister-logo.png +0 -0
- package/web/static/flitsmeister_app_icon.png +0 -0
- package/web/static/fm-dash-logo.svg +19 -0
- package/web/static/icon-facebook.png +0 -0
- package/web/static/index.png +0 -0
- package/web/static/login-bg.png +0 -0
- package/web/static/no_invoices.png +0 -0
- package/web/static/person-shrugging.png +0 -0
- package/web/static/pro_confetti@2x.png +0 -0
- package/web/static/pro_star@2x.png +0 -0
- package/web/static/sso/bmfleet.png +0 -0
- package/web/static/sso/pitstop.png +0 -0
- package/web/static/sso/truckmeister.png +0 -0
- package/web/static/sso/webshop.png +0 -0
- package/web/static/triplogging_whatsnew.png +0 -0
- package/web/store.js +79 -0
- package/web/styles/app.scss +9 -0
- package/web/styles/flashmaster/fm-design-system.json +4414 -0
- package/web/styles/flashmaster/primitives.json +604 -0
- package/web/styles/flashmaster.scss +162 -0
- package/webpack.config.js +161 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"auth": {
|
|
4
|
+
"invalid_client": "Invalid parameters, please check your URL or contact the website where you came from.",
|
|
5
|
+
"invalid_login": "Your e-mail\/password combination wasn't recognized.",
|
|
6
|
+
"invalid_payload": "Invalid input! Incorrect e-mail and\/or password.",
|
|
7
|
+
"username_in_use": "Your chosen e-mail address is already in use by another profile."
|
|
8
|
+
},
|
|
9
|
+
"back-to-app": "Back to the app.",
|
|
10
|
+
"back-to-main": "Back to {0}",
|
|
11
|
+
"cancel": "Cancel",
|
|
12
|
+
"click_here": "Tap here",
|
|
13
|
+
"close": "Close",
|
|
14
|
+
"cookies": {
|
|
15
|
+
"accept": "Accept",
|
|
16
|
+
"customize": "Customize",
|
|
17
|
+
"description": "We use cookies to analyze site performance and deliver personalized content. More info? Check our cookie policy.",
|
|
18
|
+
"permissionsections": {
|
|
19
|
+
"analytics": {
|
|
20
|
+
"description": "These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us to know which pages are the most and least popular and see how visitors move around the site.",
|
|
21
|
+
"title": "Analytical cookies"
|
|
22
|
+
},
|
|
23
|
+
"essentials": {
|
|
24
|
+
"description": "These cookies are necessary for the website to function and cannot be disabled in our systems. They are usually set only in response to actions taken by you that amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.",
|
|
25
|
+
"title": "Essential cookies"
|
|
26
|
+
},
|
|
27
|
+
"marketing": {
|
|
28
|
+
"description": "These cookies may be set by our advertising partners through our site. They may be used by those companies to compile a profile of your interests and show you relevant ads on other sites.",
|
|
29
|
+
"title": "Marketing cookies"
|
|
30
|
+
},
|
|
31
|
+
"preferences": {
|
|
32
|
+
"description": "We use these cookies to track your behavior on our websites and apps so that we can offer you a personalized experience.",
|
|
33
|
+
"title": "Preferences"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"refuse": "Refuse",
|
|
37
|
+
"save": "Save",
|
|
38
|
+
"title": "Do you accept our cookies?"
|
|
39
|
+
},
|
|
40
|
+
"coupon": {
|
|
41
|
+
"error": {
|
|
42
|
+
"already-used": "This code has already been used",
|
|
43
|
+
"generic": "Oops, something went wrong linking your code. Please try again or contact <a href=\"https:\/\/help.flitsmeister.nl\">support<\/a>.",
|
|
44
|
+
"no-subscription": "This code is not for a subscription. You can use it when purchasing your product",
|
|
45
|
+
"not-existing": "This code is unknown"
|
|
46
|
+
},
|
|
47
|
+
"fill": "Enter your coupon code",
|
|
48
|
+
"name": "Coupon code",
|
|
49
|
+
"pro": {
|
|
50
|
+
"description": "{0} PRO has been added to your profile 💪",
|
|
51
|
+
"extend": "Your PRO has been extended!",
|
|
52
|
+
"extra": "Open the app and discover your new PRO features.",
|
|
53
|
+
"free_months": "Your PRO subscription has been set up through {0}. The {1} PRO will start after you have cancelled your subscription via {0}.",
|
|
54
|
+
"new": "You are PRO!"
|
|
55
|
+
},
|
|
56
|
+
"question": "Did you receive a coupon code?",
|
|
57
|
+
"title": "Add coupon code",
|
|
58
|
+
"triplogging": {
|
|
59
|
+
"description": "You can use Trip Registration for the next {0}",
|
|
60
|
+
"extend": "Trip registration activated!",
|
|
61
|
+
"new": "Trip registration activated!"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"dash": {
|
|
65
|
+
"linked": "Linked DASH",
|
|
66
|
+
"not_linked": "Not yet linked"
|
|
67
|
+
},
|
|
68
|
+
"email": "E-mail address",
|
|
69
|
+
"forum-redirect": {
|
|
70
|
+
"continue": "click here to continue",
|
|
71
|
+
"error": "Something went wrong with changing your public name, check your input and try again.",
|
|
72
|
+
"leading": "To make use of the forum, you have to set a public name.",
|
|
73
|
+
"public_name_placeholder": "Public Name",
|
|
74
|
+
"redirect": "You are being redirected automatically..",
|
|
75
|
+
"requirements": "Allowed characters: letters, numbers and an underscore.",
|
|
76
|
+
"submit_public_name": "Submit Public Name",
|
|
77
|
+
"title": "Profile"
|
|
78
|
+
},
|
|
79
|
+
"gdpr": {
|
|
80
|
+
"insight": {
|
|
81
|
+
"creating": "Your data is being gathered, this can take a while, but usually no longer than a minute.",
|
|
82
|
+
"description": "As a user of Flitsmeister you have the right (by law) to request all your personal data we've stored.",
|
|
83
|
+
"download": "Download",
|
|
84
|
+
"download_complete": "Your data has been downloaded.",
|
|
85
|
+
"download_error": "Something went wrong requesting your data. Please try again or contact {support}{br}Provide the email address of your account: {email}",
|
|
86
|
+
"download_ready": "Your data is now available for download.",
|
|
87
|
+
"request": "Request",
|
|
88
|
+
"rerequest": "Request again",
|
|
89
|
+
"subtitle": "Request stored personal data",
|
|
90
|
+
"title": "Right of access"
|
|
91
|
+
},
|
|
92
|
+
"removal": {
|
|
93
|
+
"approve": {
|
|
94
|
+
"description": "Yes, I want to delete all my personal data and subscriptions with Flitsmeister.",
|
|
95
|
+
"description_dash": "Yes, I want to deactivate my Flitsmeister DASH.",
|
|
96
|
+
"parking": "Yes, I understand that I have to delete my parking account myself on the {_4411} website.",
|
|
97
|
+
"store_subscription": "Yes, I understand I have to cancel my subscription myself via the {0} .",
|
|
98
|
+
"title": "Are you sure? 😔"
|
|
99
|
+
},
|
|
100
|
+
"cta": "Delete",
|
|
101
|
+
"cta_approved": "Delete personal data",
|
|
102
|
+
"description": {
|
|
103
|
+
"1": "As a user of Flitsmeister you have a legal right to have all your personal data deleted.",
|
|
104
|
+
"2": "When you delete all your data, you will also delete any in-app purchases.",
|
|
105
|
+
"3": "Watch out for this...!"
|
|
106
|
+
},
|
|
107
|
+
"error": "Something went wrong while removing your data. Please try again or contact {support}{br}Please provide them with the email address of your account: {email}",
|
|
108
|
+
"store_subscription": {
|
|
109
|
+
"description": "You still have an active subscription through the {0}. Unfortunately, we cannot cancel these. You have do this yourself via the {0}.",
|
|
110
|
+
"title": "Subscription through the {0}"
|
|
111
|
+
},
|
|
112
|
+
"subtitle": "Delete personal data",
|
|
113
|
+
"succeeded": {
|
|
114
|
+
"description": "Thank you for contributing 🙌",
|
|
115
|
+
"title": "Success, your data has been deleted."
|
|
116
|
+
},
|
|
117
|
+
"title": "Right to be forgotten"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"here": "here",
|
|
121
|
+
"index": {
|
|
122
|
+
"welcome": "Welcome"
|
|
123
|
+
},
|
|
124
|
+
"internal_server_error": "Internal server error occurred, please try again later. Or contact support if it keeps happening.",
|
|
125
|
+
"invoices": {
|
|
126
|
+
"footer": "Purchases from the Appstore and Play Store are <strong>not visible<\/strong> on mijn.flitsmeister.nl<br>View the invoices from the App or Play Store on your phone.",
|
|
127
|
+
"multiple_products": "Multiple products",
|
|
128
|
+
"name": "Invoices",
|
|
129
|
+
"nothing": "No invoices are available",
|
|
130
|
+
"payment_status_options": {
|
|
131
|
+
"canceled": "Cancelled",
|
|
132
|
+
"expired": "Expired",
|
|
133
|
+
"failed": "Failed",
|
|
134
|
+
"open": "Open",
|
|
135
|
+
"paid": "Paid",
|
|
136
|
+
"pending": "Open",
|
|
137
|
+
"unknown": "Unknown"
|
|
138
|
+
},
|
|
139
|
+
"titles": {
|
|
140
|
+
"date": "Date",
|
|
141
|
+
"payment_status": "Payment status",
|
|
142
|
+
"price": "Price",
|
|
143
|
+
"product": "Product"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"login": {
|
|
147
|
+
"action": "Login",
|
|
148
|
+
"continue": "Continue",
|
|
149
|
+
"currently_logged_in_with": "You are currently logged in with <strong>{0}<\/strong>.",
|
|
150
|
+
"forgotten_password": "Forgot your password? {0}",
|
|
151
|
+
"leading": "Don't have an account yet? {0}",
|
|
152
|
+
"login_provider": "Login with {0}",
|
|
153
|
+
"login_sso": "Login with your <strong>Flitsmeister Profile<\/strong> to continue.",
|
|
154
|
+
"login_sso_webshop": "Already have an account? Please make sure the account you login with is the same as the account you use in the Flitsmeister app on your phone.",
|
|
155
|
+
"title": " Login",
|
|
156
|
+
"to_register": "Then register here.",
|
|
157
|
+
"use_other_account": "Use another profile"
|
|
158
|
+
},
|
|
159
|
+
"or": "or",
|
|
160
|
+
"password": "Password",
|
|
161
|
+
"products": "Products",
|
|
162
|
+
"profile": {
|
|
163
|
+
"apple": {
|
|
164
|
+
"can": "You can log in to Flitsmeister with your Apple ID",
|
|
165
|
+
"cannot": "Link your Apple ID to log in to Flitsmeister"
|
|
166
|
+
},
|
|
167
|
+
"change": "Change",
|
|
168
|
+
"email_and_password": {
|
|
169
|
+
"can": "You can log in to Flitsmeister with your email and your chosen password",
|
|
170
|
+
"cannot": "You cannot log in to Flitsmeister with an email and password",
|
|
171
|
+
"change_email": "Change email",
|
|
172
|
+
"change_password": "Change password",
|
|
173
|
+
"current_email_error": "The e-mail address matches your current e-mail address",
|
|
174
|
+
"current_password": "Current password",
|
|
175
|
+
"current_password_error": "Your current password does not match",
|
|
176
|
+
"email": "E-mail",
|
|
177
|
+
"email_already_exist": "The e-mail address already exists",
|
|
178
|
+
"new_password": "New password",
|
|
179
|
+
"new_password_must_be_five_chars_or_more": "Password needs to be at least 5 characters or longer",
|
|
180
|
+
"repeat_new_password": "Repeat new password",
|
|
181
|
+
"repeat_new_password_error": "Your repeated password does not match",
|
|
182
|
+
"title": "Email and password"
|
|
183
|
+
},
|
|
184
|
+
"google": {
|
|
185
|
+
"can": "You can log in to Flitsmeister with your Google account",
|
|
186
|
+
"cannot": "Link your Google account to log in to Flitsmeister"
|
|
187
|
+
},
|
|
188
|
+
"link": "Link",
|
|
189
|
+
"logout": "Log out",
|
|
190
|
+
"name": "Profile",
|
|
191
|
+
"set": "Set",
|
|
192
|
+
"unlink": "Unlink"
|
|
193
|
+
},
|
|
194
|
+
"register": {
|
|
195
|
+
"leading": "Already have a profile? {0}",
|
|
196
|
+
"login_provider": "Continue with {0}",
|
|
197
|
+
"success_leading": "Check your inbox. We have sent you a link to activate your profile.",
|
|
198
|
+
"title": "Create Profile",
|
|
199
|
+
"to_login": "Then log in here"
|
|
200
|
+
},
|
|
201
|
+
"reset-password": {
|
|
202
|
+
"change_password": "Reset my password",
|
|
203
|
+
"incorrect_email": "Oops, you've entered an invalid e-mail address.",
|
|
204
|
+
"incorrect_password": "Oops, your password doesn't meet the specified requirements.",
|
|
205
|
+
"incorrect_repeat": "Oops, your passwords don't match, please check your input.",
|
|
206
|
+
"leading": "Enter your e-mail below, and we'll send you a link to reset your password.",
|
|
207
|
+
"link_expired": "Oops, this link has unfortunately already expired. You can request a new link {0} or through the app.",
|
|
208
|
+
"mail_sent": "If a profile exists at the given e-mail address, you will find a reset link in your mailbox!",
|
|
209
|
+
"new_password": "Your new password.",
|
|
210
|
+
"password_changed": "Hooray! Your password has been set. You can now log back in to the app.",
|
|
211
|
+
"repeat_new_password": "Repeat your new password.",
|
|
212
|
+
"requirements": "A password must consist of at least 6 characters.",
|
|
213
|
+
"title": "Forgotten password"
|
|
214
|
+
},
|
|
215
|
+
"save": "Save",
|
|
216
|
+
"statistics": "Statistics",
|
|
217
|
+
"subscriptions": {
|
|
218
|
+
"Android_store": "the Google Play Store",
|
|
219
|
+
"add": "Add subscription",
|
|
220
|
+
"buy_again": "Buy again",
|
|
221
|
+
"cancel": "Cancel subscription",
|
|
222
|
+
"cancel_confirm": {
|
|
223
|
+
"description": "If you stop your subscription now, you can still use your {1} until <strong>{0}<\/strong>.",
|
|
224
|
+
"description_grace": "If you stop your subscription now, you cannot use your {1} anymore.",
|
|
225
|
+
"title": "Are you sure? 😔"
|
|
226
|
+
},
|
|
227
|
+
"cancelled": {
|
|
228
|
+
"description": "You can continue to use {0} until {1}.",
|
|
229
|
+
"title": "Your subscription is cancelled. 👋"
|
|
230
|
+
},
|
|
231
|
+
"downgrade_to_pro": {
|
|
232
|
+
"action": "Get PRO",
|
|
233
|
+
"description": "Convert your current PRO Plus subscription to Flitsmeister PRO. Flitsmeister PRO Plus will remain active until {0}. After this, the subscription will automatically switch to Flitsmeister PRO.",
|
|
234
|
+
"started": "Your subscription will be converted to PRO at {0}",
|
|
235
|
+
"title": "Get Flitsmeister PRO"
|
|
236
|
+
},
|
|
237
|
+
"extends_on": "Will be renewed on {1}.",
|
|
238
|
+
"fm-dash-subscription": {
|
|
239
|
+
"name": "Flitsmeister DASH subscription"
|
|
240
|
+
},
|
|
241
|
+
"fm-dash": {
|
|
242
|
+
"name": "Flitsmeister DASH"
|
|
243
|
+
},
|
|
244
|
+
"fm-fleet": {
|
|
245
|
+
"description": "Manage your fleet with Flitsmeister",
|
|
246
|
+
"name": "Fleet"
|
|
247
|
+
},
|
|
248
|
+
"fm-one": {
|
|
249
|
+
"name": "ONE"
|
|
250
|
+
},
|
|
251
|
+
"fm-parking": {
|
|
252
|
+
"description": "Paid parking with Flitsmeister",
|
|
253
|
+
"name": "Parking"
|
|
254
|
+
},
|
|
255
|
+
"fm-pro-1y": {
|
|
256
|
+
"name": "Flitsmeister PRO 1 year"
|
|
257
|
+
},
|
|
258
|
+
"fm-pro-2y": {
|
|
259
|
+
"name": "Flitsmeister PRO 2 years"
|
|
260
|
+
},
|
|
261
|
+
"fm-pro_v3-black_friday": {
|
|
262
|
+
"name": "Flitsmeister PRO Black Friday 6 months"
|
|
263
|
+
},
|
|
264
|
+
"fm-pro_v3-plus": {
|
|
265
|
+
"name": "Flitsmeister PRO Plus"
|
|
266
|
+
},
|
|
267
|
+
"fm-pro_v3": {
|
|
268
|
+
"description": "Flitsmeister PRO for nice extras",
|
|
269
|
+
"name": "Flitsmeister PRO"
|
|
270
|
+
},
|
|
271
|
+
"fm-soundpack-brabo": {
|
|
272
|
+
"description": "Brabo takes over your Flitsmeister",
|
|
273
|
+
"name": "Brabo sound pack"
|
|
274
|
+
},
|
|
275
|
+
"fm-soundpack-jebroer": {
|
|
276
|
+
"description": "Jebroer takes over your Flitsmeister",
|
|
277
|
+
"name": "Jebroer sound pack"
|
|
278
|
+
},
|
|
279
|
+
"fm-soundpack-olavmol": {
|
|
280
|
+
"description": "Olav Mol takes over your Flitsmeister",
|
|
281
|
+
"name": "Olav Mol sound pack"
|
|
282
|
+
},
|
|
283
|
+
"fm-superhero": {
|
|
284
|
+
"name": "Flitsmeister Superhero"
|
|
285
|
+
},
|
|
286
|
+
"fm-tripregistration": {
|
|
287
|
+
"description": "Register your journeys for the Tax and Customs Administration",
|
|
288
|
+
"name": "Trip registration"
|
|
289
|
+
},
|
|
290
|
+
"fm-two": {
|
|
291
|
+
"name": "TWO"
|
|
292
|
+
},
|
|
293
|
+
"free_months": "You have recently activated <strong>{0} {1}<\/strong> on your profile. This will take effect after you have cancelled your subscription in {2}.",
|
|
294
|
+
"free_trial": "Free trial",
|
|
295
|
+
"go_to_minisite": "Go to the {0} mini site.",
|
|
296
|
+
"iOS_store": "the Apple App Store",
|
|
297
|
+
"in_grace": "Your {0} is currently in the grace period. <br> If you continue, your subscription will be immediately stopped and you will no longer be able to use your {0} .",
|
|
298
|
+
"login_at": "Login at {0}",
|
|
299
|
+
"manage_subscription": "Manage subscription",
|
|
300
|
+
"month": "month",
|
|
301
|
+
"months": "months",
|
|
302
|
+
"more_information": "More information",
|
|
303
|
+
"open": "Open",
|
|
304
|
+
"renew": "Renew",
|
|
305
|
+
"stop_store_subscription": "Check here how to stop it.",
|
|
306
|
+
"subscription_stopped": "Your subscription has been canceled",
|
|
307
|
+
"subscription_store": "Manage your subscription in",
|
|
308
|
+
"subscription_via": "Subscription via",
|
|
309
|
+
"subscription_web": "Ongoing subscription",
|
|
310
|
+
"subscription_web_in_grace": "Grace period active",
|
|
311
|
+
"upgrade_to_pro_plus": {
|
|
312
|
+
"action": "Upgrade",
|
|
313
|
+
"description": "Upgrade to immediately receive all the benefits of Flitsmeister PRO Plus.",
|
|
314
|
+
"price": "Flitsmeister PRO Plus costs €6.99 per month. For the first month we will offset this with what you have already paid for your current subscription.",
|
|
315
|
+
"title": "Upgrade to PRO Plus"
|
|
316
|
+
},
|
|
317
|
+
"valid_until": "Valid until {0}",
|
|
318
|
+
"year": "year",
|
|
319
|
+
"years": "years"
|
|
320
|
+
},
|
|
321
|
+
"success": "Yippee!",
|
|
322
|
+
"support": "Support",
|
|
323
|
+
"unsubscribe": {
|
|
324
|
+
"complete": "You have been unsubscribed, you will not receive any more emails from us.",
|
|
325
|
+
"leading": "Are you are sure you don't want to receive our newsletter and personal emails any more?",
|
|
326
|
+
"title": "Unsubscribe",
|
|
327
|
+
"unsubscribe": "Yes, unsubscribe me"
|
|
328
|
+
},
|
|
329
|
+
"validation": {
|
|
330
|
+
"error": "Your confirmation link has expired.",
|
|
331
|
+
"success": "Your e-mail has been confirmed, thank you!"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Lisää",
|
|
3
|
+
"auth": {
|
|
4
|
+
"invalid_client": "Virheelliset parametrit: tarkista linkki tai ota yhteyttä sivustoon, jonka kautta tulit.",
|
|
5
|
+
"invalid_login": "Sähköpostiosoitteen ja salasanan yhdistelmää ei tunnistettu.",
|
|
6
|
+
"invalid_payload": "Virheelliset tiedot! Väärä sähköpostiosoite ja\/tai salasana.",
|
|
7
|
+
"username_in_use": "Valitsemasi sähköpostiosoite on jo toisen tilin käytössä."
|
|
8
|
+
},
|
|
9
|
+
"back-to-app": "Takaisin sovellukseen",
|
|
10
|
+
"back-to-main": "Takaisin {0}",
|
|
11
|
+
"cancel": "Peruuta",
|
|
12
|
+
"click_here": "Napauta tästä",
|
|
13
|
+
"close": "Sulje",
|
|
14
|
+
"coupon": {
|
|
15
|
+
"error": {
|
|
16
|
+
"already-used": "Koodia on jo käytetty",
|
|
17
|
+
"generic": "Oho, jotain meni pieleen etukoodisi linkittämisessä. Yritä uudelleen tai ota yhteyttä <a href=\"https:\/\/help.flitsmeister.nl\">tukeen<\/a>.",
|
|
18
|
+
"no-subscription": "Tätä koodia ei ole tarkoitettu tilaamiseen. Voit käyttää sitä tuotteen ostoon.",
|
|
19
|
+
"not-existing": "Koodia ei tunnistettu"
|
|
20
|
+
},
|
|
21
|
+
"fill": "Syötä etukoodisi tähän",
|
|
22
|
+
"name": "Etukoodi",
|
|
23
|
+
"pro": {
|
|
24
|
+
"description": "{0} PRO on lisätty käyttäjäprofiiliisi 💪",
|
|
25
|
+
"extend": "PROtasi on jatkettu!",
|
|
26
|
+
"extra": "Avaa sovellus ja tutustu uusiin PRO-ominaisuuksiin.",
|
|
27
|
+
"free_months": "PRO-tilauksesi on tehty {0}:n kautta. {1} PRO tulee käyttöön, kun olet perunut {0}:n kautta tekemäsi tilauksen.",
|
|
28
|
+
"new": "Olet PRO!"
|
|
29
|
+
},
|
|
30
|
+
"question": "Oletko saanut etukoodin?",
|
|
31
|
+
"title": "Lisää etukoodi",
|
|
32
|
+
"triplogging": {
|
|
33
|
+
"description": "Voit käyttää ajorekisteröintiä vielä seuraavat {0}.",
|
|
34
|
+
"extend": "Ajorekisteröinti aktivoitu!",
|
|
35
|
+
"new": "Ajorekisteröinti aktivoitu!"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"email": "Sähköpostiosoite",
|
|
39
|
+
"forum-redirect": {
|
|
40
|
+
"continue": "Napauta tästä jatkaaksesi",
|
|
41
|
+
"error": "Julkisesti näytettävän nimen muokkauksessa meni jotain vikaan. Tarkista annetut tiedot ja yritä vielä uudelleen.",
|
|
42
|
+
"leading": "Foorumin käyttö edellyttää julkisen nimen valitsemista.",
|
|
43
|
+
"public_name_placeholder": "Julkinen nimi",
|
|
44
|
+
"redirect": "Sinut siirretään automaattisesti eteenpäin...",
|
|
45
|
+
"requirements": "Sallitut merkit: kirjaimet, numerot ja alaviiva.",
|
|
46
|
+
"submit_public_name": "Julkisen nimen määrittäminen",
|
|
47
|
+
"title": "Profiili"
|
|
48
|
+
},
|
|
49
|
+
"here": "tästä",
|
|
50
|
+
"index": {
|
|
51
|
+
"welcome": "Tervetuloa"
|
|
52
|
+
},
|
|
53
|
+
"internal_server_error": "Palvelimessa tapahtui sisäinen virhe. Yritä myöhemmin uudelleen. Tapahtuuko virhe jatkuvasti uudelleen? Ota yhteyttä meihin tuen kautta.",
|
|
54
|
+
"invoices": {
|
|
55
|
+
"footer": "Appstoresta ja Play Storesta tehdyt ostokset <strong>eivät näy<\/strong> osoitteessa my.flitsmeister.nl<br>Katso Appstoren tai Play Storen laskuja puhelimestasi.",
|
|
56
|
+
"name": "Laskut",
|
|
57
|
+
"nothing": "Laskuja ei ole saatavilla"
|
|
58
|
+
},
|
|
59
|
+
"login": {
|
|
60
|
+
"action": "Kirjaudu sisään",
|
|
61
|
+
"continue": "Jatka {0} välityksellä",
|
|
62
|
+
"currently_logged_in_with": "Olet nyt kirjautuneena sisään tilillä <strong> {0} <\/strong>.",
|
|
63
|
+
"forgotten_password": "Unohditko salasanasi? {0}",
|
|
64
|
+
"leading": "Eikö sinulla ole vielä profiilia? {0}",
|
|
65
|
+
"login_provider": "Jatka {0} välityksellä",
|
|
66
|
+
"login_sso": "Kirjaudu sisään <strong>Flitsmeister-tilillesi<\/strong> jatkaaksesi eteenpäin.",
|
|
67
|
+
"title": "Sisäänkirjautuminen",
|
|
68
|
+
"to_register": "Rekisteröidy tästä.",
|
|
69
|
+
"use_other_account": "Jatka {0} välityksellä"
|
|
70
|
+
},
|
|
71
|
+
"or": "tai",
|
|
72
|
+
"password": "Salasana",
|
|
73
|
+
"products": "Tuotteet",
|
|
74
|
+
"profile": {
|
|
75
|
+
"name": "Profiili"
|
|
76
|
+
},
|
|
77
|
+
"register": {
|
|
78
|
+
"leading": "Onko sinulla jo profiili? {0}",
|
|
79
|
+
"login_provider": "Jatka {0}",
|
|
80
|
+
"success_leading": "Tarkista saapuneet-kansiosi. Olemme lähettäneet sinulle linkin, jolla voit aktivoida tilisi.",
|
|
81
|
+
"title": "Luo profiili",
|
|
82
|
+
"to_login": "Kirjaudu sitten sisään tästä."
|
|
83
|
+
},
|
|
84
|
+
"reset-password": {
|
|
85
|
+
"change_password": "Salasanan vaihtaminen",
|
|
86
|
+
"incorrect_email": "Hupsista, täyttämäsi sähköpostiosoite on väärä.",
|
|
87
|
+
"incorrect_password": "Hupsista, salasana ei täytä vaadittavia ehtoja.",
|
|
88
|
+
"incorrect_repeat": "Hupsista, salasana ei täsmää. Tarkista antamasi tiedot.",
|
|
89
|
+
"leading": "Kirjoita sähköpostiosoitteesi tähän, niin lähetämme sinulle linkin, jolla voit vaihtaa salasanasi.",
|
|
90
|
+
"link_expired": "Hupsista, linkki on vanhentunut. Pyydä uusi linkki {0} kautta tai sovelluksella.",
|
|
91
|
+
"mail_sent": "Jos annetulla sähköpostiosoitteella on olemassa tili, löydät postilaatikostasi linkin asetusten palauttamiseen!",
|
|
92
|
+
"new_password": "Uusi salasanasi.",
|
|
93
|
+
"password_changed": "Hurraa! Salasanasi on vaihdettu. Voit taas kirjautua sovellukseen.",
|
|
94
|
+
"repeat_new_password": "Toista uusi salasanasi.",
|
|
95
|
+
"requirements": "Salasanan tulee sisältää vähintään kuusi (6) kirjoitusmerkkiä.",
|
|
96
|
+
"title": "Salasana unohtunut"
|
|
97
|
+
},
|
|
98
|
+
"statistics": "Tilastot",
|
|
99
|
+
"subscriptions": {
|
|
100
|
+
"Android_store": "Google Play Storessa",
|
|
101
|
+
"add": "Tilauksen lisääminen",
|
|
102
|
+
"buy_again": "Osta uudelleen",
|
|
103
|
+
"cancel": "Tilauksen lopettaminen",
|
|
104
|
+
"cancel_confirm": {
|
|
105
|
+
"description": "Jos peruutat tilauksesi nyt, voit vielä käyttää {1} <strong> {0} <\/strong> asti.",
|
|
106
|
+
"description_grace": "Jos peruutat tilauksesi nyt, voit vielä käyttää {1} <strong> {0} <\/strong> asti.",
|
|
107
|
+
"title": "Oletko varma? 😔"
|
|
108
|
+
},
|
|
109
|
+
"cancelled": {
|
|
110
|
+
"description": "Voit jatkaa {0} käyttöä {1} asti.",
|
|
111
|
+
"title": "Tilauksesi on lopetettu. 👋"
|
|
112
|
+
},
|
|
113
|
+
"extends_on": "Jatketaan {1}",
|
|
114
|
+
"fm-dash": {
|
|
115
|
+
"name": "Flitsmeister DASH"
|
|
116
|
+
},
|
|
117
|
+
"fm-fleet": {
|
|
118
|
+
"description": "Hallinnoi ajokalustoasi Flitsmeisterilla",
|
|
119
|
+
"name": "Ajokalusto"
|
|
120
|
+
},
|
|
121
|
+
"fm-one": {
|
|
122
|
+
"name": "ONE"
|
|
123
|
+
},
|
|
124
|
+
"fm-parking": {
|
|
125
|
+
"description": "Maksullinen pysäköinti Flitsmeisterilla",
|
|
126
|
+
"name": "Parking"
|
|
127
|
+
},
|
|
128
|
+
"fm-pro-1y": {
|
|
129
|
+
"name": "Flitsmeister PRO 1 vuosi"
|
|
130
|
+
},
|
|
131
|
+
"fm-pro-2y": {
|
|
132
|
+
"name": "Flitsmeister PRO 2 vuotta"
|
|
133
|
+
},
|
|
134
|
+
"fm-pro_v3-plus": {
|
|
135
|
+
"name": "Flitsmeister PRO Plus"
|
|
136
|
+
},
|
|
137
|
+
"fm-pro_v3": {
|
|
138
|
+
"description": "Flitsmeister PRO mukavilla lisäominaisuuksilla",
|
|
139
|
+
"name": "Flitsmeister PRO"
|
|
140
|
+
},
|
|
141
|
+
"fm-soundpack-brabo": {
|
|
142
|
+
"description": "Brabo ottaa Flitsmeisterisi haltuunsa",
|
|
143
|
+
"name": "Brabo-äänipaketti"
|
|
144
|
+
},
|
|
145
|
+
"fm-soundpack-jebroer": {
|
|
146
|
+
"description": "Jeboer ottaa Flitsmeisterisi haltuunsa",
|
|
147
|
+
"name": "Jeboer-äänipaketti"
|
|
148
|
+
},
|
|
149
|
+
"fm-soundpack-olavmol": {
|
|
150
|
+
"description": "Olav Mol ottaa Flitsmeisterisi haltuunsa",
|
|
151
|
+
"name": "Olav Mol -äänipaketti"
|
|
152
|
+
},
|
|
153
|
+
"fm-superhero": {
|
|
154
|
+
"name": "Flitsmeister Superhero"
|
|
155
|
+
},
|
|
156
|
+
"fm-tripregistration": {
|
|
157
|
+
"description": "Rekisteröi ajomatkasi verotusta varten",
|
|
158
|
+
"name": "Ajorekisteröinti"
|
|
159
|
+
},
|
|
160
|
+
"fm-two": {
|
|
161
|
+
"name": "TWO"
|
|
162
|
+
},
|
|
163
|
+
"free_months": "Olet äskettäin aktivoinut käyttäjäprofiiliisi kohteen: <strong>{0} {1}<\/strong>. Se tulee käyttöön, kun olet lopettanut tilauksesi {2}:n kautta.",
|
|
164
|
+
"free_trial": "Ilmainen kokeiluversio",
|
|
165
|
+
"go_to_minisite": "Siirry {0}-minisivustolle.",
|
|
166
|
+
"iOS_store": "Apple App Storessa",
|
|
167
|
+
"in_grace": "Jatketaan {1}",
|
|
168
|
+
"login_at": "Kirjaudu sisään {0}",
|
|
169
|
+
"manage_subscription": "Tilauksen hallinta",
|
|
170
|
+
"month": "kuukausi",
|
|
171
|
+
"months": "kuukaudet",
|
|
172
|
+
"more_information": "Lisätietoja",
|
|
173
|
+
"open": "Avaa",
|
|
174
|
+
"renew": "Jatka tilausta",
|
|
175
|
+
"stop_store_subscription": "Tarkista tästä, miten voit lopettaa sen.",
|
|
176
|
+
"subscription_stopped": "Tilauksesi on lopetettu",
|
|
177
|
+
"subscription_store": "Hallinnoi tilaustasi",
|
|
178
|
+
"subscription_via": "Tilattu",
|
|
179
|
+
"subscription_web": "Jatkuva tilaus",
|
|
180
|
+
"subscription_web_in_grace": "Armonaika aktiivinen",
|
|
181
|
+
"valid_until": "Voimassa {0} asti",
|
|
182
|
+
"year": "vuosi",
|
|
183
|
+
"years": "vuotta"
|
|
184
|
+
},
|
|
185
|
+
"success": "No niin!",
|
|
186
|
+
"support": "Tuki",
|
|
187
|
+
"unsubscribe": {
|
|
188
|
+
"complete": "Tilauksesi on lopetettu. Et saa meiltä enää markkinointiviestejä.",
|
|
189
|
+
"leading": "Oletko varma, ettet enää halua saada meiltä uutiskirjeitä eikä henkilökohtaisia sähköpostiviestejä?",
|
|
190
|
+
"title": "Markkinointiviestien tilauksen peruminen",
|
|
191
|
+
"unsubscribe": "Kyllä, lopeta tilaukseni"
|
|
192
|
+
},
|
|
193
|
+
"validation": {
|
|
194
|
+
"error": "Aktivointilinkkisi on vanhentunut.",
|
|
195
|
+
"success": "Tilin vahvistus onnistui, kiitos!"
|
|
196
|
+
}
|
|
197
|
+
}
|