-
Notifications
You must be signed in to change notification settings - Fork 975
/
Copy pathdashboard.properties
1245 lines (1195 loc) · 64.5 KB
/
dashboard.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#common
common.total-sessions = Total Sessions
common.total-sessions-description = Number of times your application is opened, by new or returning users, in the selected time period.
common.new-sessions = New Sessions
common.new-sessions-description = Number of times your application is opened by a new user, in the selected time period. It is equal to the number of New Users and it only counts the first session the user had.
common.unique-sessions = Unique Sessions
common.unique-sessions-description = Number of times your application is opened by a new or returning user from a unique device, in the selected time period. It is equal to the number of Total Users.
common.total-users = TOTAL USERS
common.new-users = NEW USERS
common.returning-users = RETURNING USERS
common.date = Date
common.month = Month
common.percent = Percent
common.number-of-users = Number of Users
common.number-of-sessions = Number of Sessions
common.session-duration = Session Duration
common.table.no-data = No data
common.search.no-match-found = No match found
common.table.total-users = Total Users
common.selected-users = Some specific users
common.table.total-users-desc = The number of users (unique devices/IDs) who have opened your application in the selected time period.
web.common.table.total-users = Total Visitors
web.common.table.total-users-desc = The number of visitors (unique devices/IDs) who have visited your website in the selected time period.
common.table.new-users = New Users
common.table.new-users-desc = The number of first-time users (unique devices/IDs) in the selected time period.
common.table.returning-users = Returning Users
common.table.returning-users-desc = Number of users using your application for the second or later time, in the selected time period, calculated as Total Users (less) New Users.
web.common.table.returning-users = Returning Visitors
web.common.table.returning-users-desc = Number of visitors using your website for the second or later time, in the selected time period, calculated as Total Visitors (less) New Visitors.
common.table.total-sessions = Total Sessions
common.table.new-sessions = New Sessions
common.table.unique-sessions = Unique Sessions
common.today = Today
common.7days = 7 days
common.30days = 30 days
common.60days = 60 days
common.90days = 90 days
common.from = from
common.to = to
common.download = Download
common.refresh = Refresh
common.compare-to = Compare to
common.no-comparison = No comparison
common.of-total = of Total
common.comparison-desc = Select comparison type to show past data on the same graph
common.yesterday = Yesterday
common.previous-period = Previous period
common.previous-year = Same period in previous year
common.bar.top-resolution = Top Resolutions
common.bar.top-resolution.description = Top 5 resolution settings of the devices used your users' sessions, in the selected time period.
web.common.bar.top-resolution.description = Top 5 resolution settings of the devices used your visitors' sessions, in the selected time period.
common.bar.top-carrier = Top Carriers
common.bar.top-users = TOP USERS
common.bar.top-platform = Top Platforms
common.bar.top-platform.description = Top 5 versions of the platforms of your users’ sessions, in the selected time period.
web.common.bar.top-platform.description = Top 5 versions of the platforms of your visitors’ sessions, in the selected time period.
common.bar.top-platform-version = Top Platform Versions
common.bar.top-platform-version.description = Top 3 versions of the platforms of your users' sessions, in the selected time period.
web.common.bar.top-platform-version.description = Top 3 versions of the platforms of your visitors' sessions, in the selected time period.
common.bar.top-devices = Top Devices
common.bar.top-devices.description = Top 5 devices of your users’ based on their sessions, in the selected time period.
web.common.bar.top-devices.description = Top 5 devices of your visitors’ based on their sessions, in the selected time period.
common.bar.top-device-types = Top Device types
common.bar.top-device-types.description = Top 5 device types of your users’ based on their sessions, in the selected time period.
web.common.bar.top-device-types.description = Top 5 device types of your visitors’ based on their sessions, in the selected time period.
common.bar.top-browsers = Top Browsers
common.bar.top-browsers.description = Top 5 browsers of your users’ based on their sessions, in the selected time period
common.bar.top-app-versions = Top App Versions
common.bar.top-app-versions.description = Top 5 App versions of your users’ based on their sessions, in the selected time period.
web.common.bar.top-app-versions.description = Top 5 App versions of your visitors’ based on their sessions, in the selected time period.
common.bar.no-data = No Data
common.apply = Apply
common.apply-changes = Apply changes
common.cancel = Cancel
common.select = Select
common.select-all = Select all
common.deselect-all = Deselect all
common.all = All
common.select-type = Select type
common.yes = Yes
common.no = No
common.done = Done
common.save = Save
common.saving = Saving
common.close = Close
common.copy-id = Copy widget ID
common.loading = Loading
common.continue = Continue
common.okay = Okay
common.add = Add
common.delete = Delete
common.edit = Edit
common.duplicate = Duplicate
common.lock = Lock
common.locked = Locked
common.unlock = Unlock
common.unlocked = Unlocked
common.ok = OK
common.total = Total
common.status = Status
common.select-status = Select status
common.select-type = Select type
common.type = Type
common.time = Time
common.started = Started
common.info = Information
common.save-changes = Save changes
common.graph-max = Maximum <b>{0}</b> {1} reached on <b>{2}</b>
common.graph-min = Minumum <b>{0}</b> {1} on <b>{2}</b>
common.graph.time-spent = Time Spent (min)
common.graph.average-time = Avg. Time Spent (min)
common.graph.reqs-received = Requests Received
common.graph.avg-reqs-received = Avg. Requests Received
common.graph.no-data = There is no data to show for this period
common.seconds = seconds
common.minutes = minutes
common.hour = hour
common.second.abrv = s
common.second.abrv2 = s
common.minute.abrv = m
common.minute.abrv2 = m
common.hour.abrv = h
common.hour.abrv2 = h
common.day.abrv = days
common.day.abrv2 = day
common.year.abrv = yrs
common.year.abrv2 = yr
common.buckets.monthly = monthly
common.buckets.weekly = weekly
common.buckets.daily = daily
common.buckets.years = years
common.buckets.months = months
common.buckets.weeks = weeks
common.buckets.days = days
common.buckets.minutes = minutes
common.buckets.hours = hours
common.max = Max
common.create = Create
common.session-expiration = Session expiration
common.click-to-login = Click to remain login
common.expire-minute = Your session will expire in 1 minute
common.expire-seconds = Your session will expire in 10 seconds
common.add-new-app = Add new app here
common.add-new-app-button = Add new app
common.change-app-type = change app type here
common.install-plugin = Please Install plugin here
common.or = or
common.missing-type = Dashboard is missing for type
common.feedback-and-support = Feedback & Support
common.provide-feedback = Provide Feedback
common.support = Support
common.documentation = Documentation
common.help-center = Help Center
common.feature-request = Request a Feature
common.showing = Showing _START_ to _END_ of _TOTAL_ entries
common.filtered = (filtered from _MAX_ total entries)
common.enterprise-edition = Countly Enterprise (supported)
common.save-to-csv = Save to CSV
common.save-to-excel = Save for Excel
common.search = Search
common.unknown = Unknown
common.eu = European Union
common.integrate-sdks = Need some help with SDK integration?
common.integrate-sdks-text = helps you generate personalized code snippets and SDK integration tutorials based on your platforms and Countly features you want to use.
common.integrate-sdks-platforms = Select a platform to get started
common.go-to-countries = Go to Countries
common.show = Show
common.show-items = Display
common.items-per-page = Items per page
common.try-later = Can't perform this operation now, try again later.
common.never = Never
common.in.days = in {0} days
common.in.hours = in {0} hours
common.in.minutes = in {0} minutes
common.in.seconds = in {0} seconds
common.ago.just-now = just now
common.ago.seconds-ago = {0} seconds ago
common.ago.half-minute = half a minute ago
common.ago.less-minute = less than a minute ago
common.ago.one-minute = one minute ago
common.ago.minutes-ago = {0} minutes ago
common.ago.one-hour = 1 hour ago
common.ago.hours-ago = {0} hours ago
common.ago.one-day = 1 day ago
common.ago.days-ago = {0} days ago
common.ago.one-week = 1 week ago
common.every.minutes = every {0} minutes
common.every.hours = every {0} hours
common.every.hour = every hour
common.estimation = Total (unique) value for this period is estimated and corrected using the biggest time buckets from available daily, weekly and monthly stats. Exact total counts are available for this year, month and day periods
common.action = Action
common.view = View
common.back = Back
common.success = Success
common.error = Error
common.no-clear = No don't clear
common.yes-discard = Yes, discard
common.yes-clear-it = Yes, clear it
common.no-dont-change = No, don't change
common.no-dont-delete = No, don't delete
common.no-dont-continue = No, don't continue
common.no-dont-do-that = No, don't do that
common.last-updated = Last updated
common.location = Location
common.enable = Enable
common.running = Running
common.completed = Completed
common.stopped = Stopped
common.errored = Error
common.visits = Visits
common.select-columns-to-display = Select columns to display
common.enter-value = Enter value
common.optional = Optional
common.clear-values = Clear values
common.confirm = Are you sure?
common.json-editor = JSON Editor
common.valid-json = Valid JSON code
common.invalid-json = Invalid JSON code
common.format = Format
common.saveJSON = Save JSON
common.zoom-in = Zoom
common.cancel-zoom = Cancel zoom
common.zoom-out = Zoom out
common.zoom-reset = Reset Zoom
common.zoom-info = Select an area in the chart to zoom in
common.group = GROUP
common.send = Send
common.customize = Customize
common.breakdown-not-available = Breakdown is not available
common.breakdown-not-available-desc = Breakdown is not available for given time period. There is no data.
common.internal-events = Internal Events
common.custom-events = Custom Events
common.none = None
common.emtpy-view-title = ...hmm, seems empty here
common.emtpy-view-subtitle = No data found
common.no-widget-text = Add a widget to create dashboard and see some informative explanation
common.no-dashboard-text = Create dashboard and see some informative explanation
common.create-dashboard = + Create a Dashboard
common.add-widget = + Add a Widget
common.sunday = Sunday
common.monday = Monday
common.tuesday = Tuesday
common.wednesday = Wednesday
common.thursday = Thursday
common.friday = Friday
common.saturday = Saturday
common.hours = Hours
common.chart-type = Chart Type
common.adjust-limit = Adjust Limit
common.copy-error-message = Something went wrong, please copy it again.
common.created-at-by = Created <span>{0}</span> by {1}
common.updated = Updated
common.manage = Manage
common.selected-with-count ={0} Selected
common.selected = Selected
common.select-all-with-count = Select all {0}
common.deselect = Deselect
common.session = Session
common.sessions = Sessions
common.go-to-settings = Go to settings
common.go-to-app-settings = Go to application management
common.go-to-task-manager = Go to Task Manager
#vue
common.undo = Undo
common.drawer.next-step = Next step
common.drawer.previous-step = Previous step
common.diff-helper.changes = You made {0} changes.
common.diff-helper.changes-made-single = change has been made.
common.diff-helper.changes-made = changes have been made.
common.diff-helper.keep = Do you want to keep them?
common.diff-helper.keep-single = Do you want to keep it?
common.save-changes = Save Changes
common.discard-changes = Discard
common.complete = Complete
common.reset = Reset
common.confirm = Confirm
common.remove = Remove
common.next = Next
common.previous = Previous
common.select-at-least = At least {0} items should be selected.
common.select-at-most = At most {0} items can be selected.
common.and = and
common.or = or
common.enter-email-addresses=Enter Email Addresses
common.invalid-email-address="{0}" is not a valid email address
common.email-example=(e.g. [email protected])
common.no-email-addresses=No addresses have been specified
#period-picker
common.all-time = All time
common.in-last-minutes-plural = in the last {0} minutes
common.in-last-minutes = in the last minute
common.in-last-hours-plural = in the last {0} hours
common.in-last-hours = in the last hour
common.in-last-days-plural = in the last {0} days
common.in-last-days = in the last day
common.in-last-weeks-plural = in the last {0} weeks
common.in-last-weeks = in the last week
common.in-last-months-plural = in the last {0} months
common.in-last-months = in the last month
common.in-last-years-plural = in the last {0} years
common.in-last-years = in the last year
common.time-period-select.custom-range = Custom range
common.time-period-select.presets = Presets
common.time-period-select.last-n = In the last
common.time-period-select.since = Since
common.time-period-select.on = On
common.time-period-select.range = In between
common.time-period-name.since = since {0}
common.time-period-name.on = on {0}
common.time-period-select.before = Before
common.time-period-name.before = Before {0}
common.time-period-name.range = {0} - {1}
common.apply-range = Apply range
common.range-length-limit = Selected range cannot be longer than {0}.
#taskmanager
taskmanager.rerun = Rerun
taskmanager.stop = Stop
taskmanager.view-old = View Cache
taskmanager.confirm-delete-title = Delete report?
taskmanager.confirm-stop = Are you sure you want to stop this task?
taskmanager.confirm-delete = Are you sure you want to delete report called {0}?
taskmanager.confirm-rerun = Are you sure you want to rerun this task?
taskmanager.confirm-rerun-title = Rerun task?
taskmanager.confirm-stop-title = Stop task?
taskmanager.yes-rerun-task = Yes, rerun this task
taskmanager.yes-stop-task = Yes, stop this task
taskmanager.yes-delete-report = Yes, delete report
taskmanager.rerunning = Re-Running
taskmanager.select-origin = Select origin
taskmanager.origin = Origin
taskmanager.auto = Auto refresh
taskmanager.manual = One time
taskmanager.edit = Edit
taskmanager.last-today = Today
taskmanager.last-7days = Last 7 days
taskmanager.last-30days = Last 30 days
taskmanager.last-60days = Last 60 days
taskmanager.manually-table-remind = One-time and auto-refreshing reports created by you and your team
taskmanager.automatically-table-remind = Reports automatically generated when a query takes a long time to complete
taskmanager.query-added-long = Query has been added to long running queries
taskmanager.empty-warning = There are no long running queries
taskmanager.recalculating = Recalculating
#task manager assistent notification strings
assistant.taskmanager.longTaskTooLong.title = This request is running for too long.
assistant.taskmanager.longTaskTooLong.message = We have switched it to report manager and will notify you when it is finished.
assistant.taskmanager.longTaskTooLong.info = Check its status in Utilities -> Report Manager
assistant.taskmanager.longTaskAlreadyRunning.title = A similar report is already running.
assistant.taskmanager.longTaskAlreadyRunning.message = Looks like report with same parameters already running in report manager
assistant.taskmanager.completed.title = Report completed for {1}
assistant.taskmanager.completed.message = Results are ready for {0} reports. Check report manager to view them.
assistant.taskmanager.errored.title = Failed to generate report for {0}
assistant.taskmanager.errored.message = Some reports ({0}) couldn't be generated. Check report manager to try rerunning it.
assistant.taskmanager.errored.info = Under Utilities -> Task Manager
#placeholders
placeholder.old-password = Old password...
placeholder.new-password = New password...
placeholder.again = Again...
placeholder.app-name = Enter application name...
placeholder.search-columns = Search Columns
placeholder.events.edit.description = Enter event description
placeholder.events.edit.count = Count
placeholder.events.edit.sum = Sum
placeholder.events.edit.duration = Duration
#application categories
application-category.books = Books
application-category.business = Business
application-category.education = Education
application-category.entertainment = Entertainment
application-category.finance = Finance
application-category.games = Games
application-category.health-fitness = Health & Fitness
application-category.lifestyle = Lifestyle
application-category.medical = Medical
application-category.music = Music
application-category.navigation = Navigation
application-category.news = News
application-category.photography = Photography
application-category.productivity = Productivity
application-category.reference = Reference
application-category.social-networking = Social Networking
application-category.sports = Sports
application-category.travel = Travel
application-category.utilities = Utilities
application-category.weather = Weather
#sidebar
sidebar.home = Home
sidebar.dashboard = Overview
sidebar.analytics = Analytics
sidebar.analytics.users = User Analytics
web.sidebar.analytics.users = Visitor Analytics
sidebar.analytics.user-loyalty = User Loyalty
sidebar.analytics.session = Session Analytics
sidebar.analytics.sessions = Sessions
sidebar.analytics.countries = Countries
sidebar.analytics.devices = Devices
sidebar.analytics.app-versions = App versions
sidebar.analytics.versions = Versions
sidebar.analytics.carriers = Carriers
sidebar.analytics.platforms = Platforms
sidebar.analytics.resolutions = Resolutions
sidebar.analytics.technology = Technology
sidebar.analytics.technology-description = Overview details of your app or website traffic by your users’ technology, such as platform, device, resolution, browsers and app version.
sidebar.analytics.geo = Geo
sidebar.engagement = Engagement
sidebar.events = Events
sidebar.events.all-events = All Events
sidebar.events.blueprint = Manage Events
sidebar.events.overview = Overview
sidebar.utilities = Utilities
sidebar.management = Management
sidebar.management.applications = Applications
sidebar.management.account = My Account
sidebar.management.users = User Management
sidebar.management.longtasks = Report Manager
sidebar.management.help = Help Mode
sidebar.management.jobs = Jobs
sidebar.management.token-manager = Token Manager
sidebar.management.presets = Preset management
sidebar.settings = Settings
sidebar.logout = Logout
sidebar.api_key = Api Key
sidebar.behavior = Behavior
sidebar.category.understand = Understand
sidebar.category.explore = Explore
sidebar.category.reach = Reach
sidebar.category.improve = Improve
sidebar.long-running-queries = Long running queries
sidebar.feedback = Feedback
sidebar.dashboard-tooltip = Dashboards
sidebar.main-menu = Main Menu
sidebar.my-profile = My Profile
sidebar.copy-api-key-success-message = Api Key has been copied to clipboard!
sidebar.banner.text = You are using a free plan.
sidebar.banner.upgrade = Upgrade and get more.
sidebar.banner.upgrade-button = Manage your plan
#dashboard
dashboard.apply = Apply
dashboard.home-desc = Overview of collected data
dashboard.empty-title = Nothing to show
dashboard.empty-text = There are no data to show. Enable features or Customize this page to see data about choosen features.
dashboard.audience = Audience
dashboard.customize-home = Customize Home
dashboard.avg-time-spent = Avg. Session Duration
dashboard.avg-time-spent-desc = The average amount of time spent per session on your application. It is calculated by dividing total duration spent across sessions by the total number of sessions.
dashboard.time-spent = Time Spent
dashboard.time-spent-desc = Total time spent for this period
dashboard.reqs-received = REQUESTS RECEIVED
dashboard.avg-reqs-received = Avg. Requests Received
dashboard.avg-reqs-received-desc = Number of write API requests Countly Server receives for each session (includes sessions, session extensions, events, etc)
dashboard.bounce-rate = BOUNCE RATE
dashboard.pages-per-visit = PAGES PER VISIT
dashboard.note-title-remaining = Remaining
dashboard.go-to-sessions = Go to Sessions
dashboard.total-sessions-desc = Total session data
#users
users.title = USERS
#user-activity
user-activity.title = User Activity
web.user-activity.title = Visitor Activity
user-activity.description = Overview of the total number of users who started a session on your application, distributed in pre-set categories of numbers of sessions.
web.user-activity.description = Overview of the total number of visitors who started a session on your website, distributed in pre-set categories of numbers of sessions.
user-activity.barchart-all-users = All Users
web.user-activity.barchart-all-users = All Visitors
user-activity.barchart-thirty-days = Active Users (30 days)
web.user-activity.barchart-thirty-days = Active Visitors (30 days)
user-activity.barchart-seven-days = Active Users (7 days)
web.user-activity.barchart-seven-days = Active Visitors (7 days)
user-activity.table-session-count = Session Count (All Time)
user-activity.table-all-users = All Users
web.user-activity.table-all-users = All Visitors
user-activity.table-thirty-days = Active Users (30 days)
web.user-activity.table-thirty-days = Active Visitors (30 days)
user-activity.table-seven-days = Active Users (7 days)
web.user-activity.table-seven-days = Active Visitors (7 days)
#user-loyalty
user-loyalty.range.first-session = First Session
user-loyalty.range.hours = hours
user-loyalty.range.day = day
user-loyalty.range.days = days
#session-overview
session-overview.title = Session Overview
session-overview.description = Summary of all sessions your users have had in your application, in the selected time period.
#session-durations
session-durations.title = Session Durations
session-durations.description = Time period(s) for which users have opened your application.
#session-frequency
session-frequency.title = Session Frequency
session-frequency.description = Number of times users open your application, in the selected time period, distributed into frequency ranges.
session-frequency.table.frequency = Time since last session
#notes
notes.add-new-note = Add New Note
notes.edit-note = Edit Note
notes.note-details = Note Details
notes.note = Note
notes.type = Type
notes.owner = Owner
notes.enter-note = Enter your note
notes.visibility = Visibility
notes.date-and-time = Date and Time
notes.color = Color
notes.color-note-description = Select the indicator color of your note
notes.share-with = Share With
notes.shared-with = Shared With
notes.manage-notes = Manage Notes
notes.delete-note = Do you really want to delete note called {0}?
notes.all-notes = All Notes
notes.back-link = Back to Overview
notes.add-note = Add Note
notes.show-notes = Show Notes
notes.hide-notes = Hide Notes
notes.created-message = Note created successfully
#session-duration
session-duration.title = SESSION DURATIONS
session-duration.table.duration = Session duration
#countries
countries.title = Countries
countries.description = An overview of the geographical distribution of your users and their sessions in the selected time period.
web.countries.description = An overview of the geographical distribution of your visitors and their sessions in the selected time period.
countries.table.country = Country
countries.table.city = City
countries.back-to-list = Back to Country List
countries.back-to-map = Back to World Map
countries.google-api-key-remind = Google Maps API key must be setup to view city level data. Click here to setup Google Maps API key.
countries.go-to-countries = Go to Countries
#devices
devices.title = DEVICES
devices.table.device = Device
devices.devices-and-types.title = Devices and Types
devices.go-to-technology = Go to Technology
#analytics users
user-analytics.overview-title = Users Overview
user-analytics.overview-desc = Overview of the main metrics and stats about your audience.
web.user-analytics.overview-title = Visitors Overview
#resolutions
resolutions.title = Resolutions
resolutions.description = Detailed information on the resolution settings of the devices through which your users access your application, in the selected time period.
web.resolutions.description = Detailed information on the resolution settings of the devices through which your visitors access your website, in the selected time period.
resolutions.table.resolution = Resolution
resolutions.table.width = Width
resolutions.table.height = Height
#device_type
device_type.title = Devices and Types
device_type.description = Details of the device models and types from which your users access your application, in the selected time period.
web.device_type.description = Details of the device models and types from which your visitors access your website, in the selected time period.
device_type.table.device_type = Device Type
device_type.types = Types
device_type.devices = Devices
#app-versions
app-versions.title = App Versions
app-versions.description = Detailed information on the application versions of your application accessed by your users, in the selected time period.
web.app-versions.description = Detailed information on the website versions of your website accessed by your visitors, in the selected time period.
app-versions.table.app-version = App Version
#carriers
carriers.title = Carriers
carriers.table.carrier = Carrier
carriers.description = Detailed information on the network carriers of the devices through which your users access your application, in the selected time period.
#platforms
platforms.title = Platforms
platforms.pie-right = PLATFORM VERSIONS
platforms.table.platform = Platform
platforms.table.platform-version = Platform Version
platforms.table.platform-version-for = Platform Versions for
platforms.description = Details of the platforms on which yours users access your application, in the selected time period.
web.platforms.description = Details of the platforms on which yours visitors access your website, in the selected time period.
platforms.platforms-for = Platforms for
platforms.version-distribution = Platforms version distribution
platforms.versions = Versions
#events
events.title = Events
events.blueprint-title = MANAGE EVENTS
events.blueprint-general = General
events.blueprint-events-tab-title = EVENTS
events.blueprint-event-group-title = MANAGE EVENT GROUPS
events.blueprint-event-group-new = New Event Group
events.blueprint-event-group-show.all = All Groups
events.blueprint-event-group-show.visible = Visible Groups
events.blueprint-event-group-show.hidden = Hidden Groups
events.blueprint-events-show.all = All Events
events.blueprint-events-show.hidden = Hidden Events
events.blueprint-events-show.visible = Visible Events
events.go-to-events = Go to Events
events.blueprint-events-properties-tooltip = Edited properties of this event will be updated on All Events and other plugins.
events.blueprint-event-groups-include-events-tooltip = Select at least 2 events to create an Event Group. New Event Groups will automatically sum all the selected event properties and report them.
events.blueprint-event-groups-properties-tooltip = Edited properties in this Event Group will be updated across All Events and other plugins.
events.blueprint-event-group-included-events = INCLUDED EVENTS
events.blueprint-eventgroups-tab-title = EVENT GROUPS
events.blueprint-edit = Edit
events.blueprint-drawer-title = Edit Event
events.blueprint-drawer-use-description = Use Description
events.general.description = Reorder, edit visibility, delete or change the appearance of a custom event
events.general.event = Event
events.general.event-description = Event description
events.general.action.perform-action = Perform action
events.general.action.delete = Delete
events.general.action.show = Show
events.general.action.hide = Hide
events.general.none-chosen = Select at least one event
events.general.update-not-successful = Updating events failed.
events.general.changes-saved = Changes saved
events.general.cancel = Cancel
events.general.confirm = Confirm
events.general.status = Status
events.general.status.visible = Visible
events.general.status.hidden = Hidden
events.general.show.title = Show
events.general.show.all = All
events.general.show.hidden = Hidden
events.general.show.visible = Visible
events.general.want-delete = You are about to delete multiple events ({0}). Do you want to continue?
events.general.want-delete-this = You are about to delete event called {0}. Do you want to continue?
events.general.want-delete-this-title = Delete an event?
events.general.want-delete-title = Delete events?
events.general.yes-delete-event = Yes, delete event
events.general.yes-delete-events = Yes, delete events
events.general.want-to-discard = You have made changes to this event. Do you want to leave and discard those changes?
events.general.want-to-discard-title = Discard changes?
events.general.events-deleted = Selected events deleted sucessfully
events.general.no-hidden-events = There are no hidden events
events.general.no-visible-events = There are no visible events
events.back-to-events = Back to all events
events.general.error = Error
events.no-segmentation = No segmentation
events.count = COUNT
events.sum = SUM
events.dur = DURATION
events.table.count = Count
events.table.sum = Sum
events.table.avg-sum = Avg. Sum
events.table.dur = Duration
events.table.avg-dur = Avg. Duration
events.table.segmentation = Segmentation
events.edit.event-key = Event key
events.edit.event-key-description = Event key as it is sent from the SDK
events.edit.event-name = Event name
events.edit.event-name-description = A display name for this event key to be used throughout the user interface
events.edit.event-description = Description
events.edit.event-description-description = A short description of this custom event and when it is triggered
events.edit.event-visibility = Event visibility
events.edit.event-visible = Event is visible
events.edit.event-invisible = Event is invisible
events.edit.event-visible-description = If an event is invisible server will continue to record data for it but it will not be displayed in the user interface.
events.edit.display-count = Display name for count
events.edit.display-count-description = A display name for the count property of this event
events.edit.display-sum = Display name for sum
events.edit.display-sum-description = A display name for the optional sum property of this event
events.edit.display-duration = Display name for duration
events.edit.display-duration-description = A display name for the optional duration property of this event.
events.edit.event-properties = Event properties
events.no-event = There are no events tracked for this application\!
events.delete-confirm = You are about to delete all data associated with event "{0}". Do you want to continue?
events.delete-confirm-many = You are about to delete all data associated with these events. Do you want to continue?
events.delete.multiple-events = {0} events
events.edit.omit-event-segments = Omit event segments
events.edit.omit-event-segments-description = Choose which segments of this custom event to omit. <b>Omitted segments will not be saved</b> in the future and past data for these segments will be purged immediately after you save these settings.
events.edit.omit-event-segments-description-drill = Data for these segments will still be stored in Drill.
events.edit.omit-event-segments-to-omit = Segments to omit
events.edit.omit-event-select-segments = Select segments
event.edit.omitt-warning = You are about to omit data for some segments of this event. Omitted segments will not be saved in the future and past data for these segments will be purged immediately after you save these settings. Do you want to continue?
events.overview.title = Overview
events.overview.drawer-title = Configure overview
events.overview.empty = You don't have any items in overview
events.overview.configure = Configure
events.overview.add-item=Add item
events.overview.added-items = Added items
events.overview.choose-event = Choose event
events.overview.choose-property = Choose property
events.overview.table.title-event = Event
events.overview.table.title-property = Property
events.overview.max-c = You can add maximum 12 previews in overview. Please delete some of previously added to add new.
events.overview.have-already-one = You have already one item with the same event and propery in overview.
events.overview.empty-title = Events overview is empty
events.overview.empty-text-admin = Configure events overview to visualise your most important custom events at a glance.
events.overview.empty-text-user = Request an admin of this application to configure events overview to visualise most important custom events at a glance.
events.overview.save-changes = Save changes
events.overview.unknown = NA
events.all.empty-title = This application doesn't have any custom events
events.all.empty-text = Log some custom events inside your application's code using the SDKs and visit this section later
events.top-events.title = Top Events By Count
events.top-events.24hours = 24-Hours
events.top-events.30days = 30-Days
events.top-events.yesterday = Yesterday
events.top-events.info-text = Updated {0} hrs ago
events.max-event-key-limit = Maximum limit of unique event keys ({0}) has been reached. Limit can be adjusted.
events.max-segmentation-limit = Maximum limit of segmentations ({0}) in current event "{1}" has been reached. Limit can be adjusted.
events.max-unique-value-limit = Maximum limit of unique values ({0}) in current event segmentation "{1}" has been reached. Limit can be adjusted.
events.event-group-drawer-create = Create new Event Group
events.event-group-name = Event Group name
events.group-use-description = Use description
events.group-include-events = Include events
events.group-select-events = Select events to include
events.group-select-events-remind = Select events
events.group-visibility = Event Group Visibility
events.group-visibility-description = If an event group is invisible server will continue to record data for it but it will not be displayed in the user interface.
events.group-visibility-checkbox = Event Group is visible
events.group-invisibility-checkbox = Event Group is invisible
events.group-properties = Event Group Properties
events.event-group-count = Display name for count
events.event-group-count-description = A display name for the count property of this event
events.event-group-sum= Display name for sum
events.event-group-sum-description = A display name for the sum property of this event
events.event-group-duration = Display name for duration
events.event-group-duration-description = A display name for the duration property of this event
events.create-group = Create Event Group
events.save-group = Save Event Group
events.edit-your-group = Edit your Event Group
#export
export.export-as = Export as
export.export-number = Total of {0} items divided into {1} export file(s)
export.select = Select file to export
export.export = Export
export.columns-to-export = Columns to export
export.export-all-columns = Export all columns
export.documents = documents
export.export-columns-selected-count = {0}/{1} selected
export.format-if-possible = Format timestamps to readable date
export.format-if-possible-explain = Fields which are saved in data base as timestamps will be converted to show as date string like in table. For example: "Mon, 29 Jun 2020 17:14:15"
export.export-started = Export file is being generated. When ready you will see notification or can download it in report manager.
export.export-failed = Error upon attempting to export table data.
export.export-finished = Export completed.
export.export-finished-click = Click to download exported file.
export.file-name = File name
#management-applications
management-applications.title = Application Management
management-applications.my-new-app = My new app
management-applications.clear-data = Clear data
management-applications.clear-reset-data = Reset application
management-applications.clear-reset-explanation = Resets app to initial clean state like right after creation
management-applications.clear-all-data = Clear all data
management-applications.clear-all-explanation = Removes collected data but keeps configurations
management-applications.clear-1month-data = Clear data older than 1 month
management-applications.clear-3month-data = Clear data older than 3 months
management-applications.clear-6month-data = Clear data older than 6 months
management-applications.clear-1year-data = Clear data older than 1 year
management-applications.clear-2year-data = Clear data older than 2 years
management-applications.yes-clear-app = Yes, clear app data
management-applications.no-clear = No don't clear
management-applications.delete-an-app = Delete application
management-applications.yes-delete-app = Yes, delete the app
management-applications.application-name = Application Name
management-applications.application-name.tip = Enter application name
management-applications.application-details = Show details
management-applications.app-details = App Details
management-applications.application-no-details = Could not retrieve app details
management-applications.type = Application Type
management-applications.type.tip = Choose application type
management-applications.type.hint = All data will be recorded for this application type
management-applications.category = Category
management-applications.category.tip = Select a category
management-applications.app-id = App ID
management-applications.app-id.hint = This ID is used for the read API
management-applications.app-key = App Key
management-applications.app-key.hint = You'll need this key for SDK integration
management-applications.app-key.generate = Will generate automatically
management-applications.app-key-unique = This App Key is already in use
management-applications.time-zone = Time Zone
management-applications.time-zone.tip = Select a country
management-applications.time-zone.hint = All data will be recorded in this timezone
management-applications.country.hint = City information will be only recorded for this country
management-applications.icon = App Icon
management-applications.add-application = Add application
management-applications.clear-confirm-all = You are about to clear all the collected data stored for your application. Do you want to continue?
management-applications.clear-confirm-period = You are about to clear all the collected data stored for your application within a selected period of time. Do you want to continue?
management-applications.clear-confirm-reset = You are about to reset your app to initial clean state. Do you want to continue?
management-applications.clear-admin = Only administrators of an application can clear it's data.
management-applications.clear-success = Application data is successfully cleared.
management-applications.reset-success = Application is successfully reset.
management-applications.delete-confirm = You are about to delete all the data associated with your application. Do you want to continue?
management-applications.delete-admin = Only administrators of an application can delete it.
management-applications.app-locked = Application is locked.
management-applications.icon-error = Only jpg, png and gif image formats are allowed
management-applications.no-app-warning = In order to start collecting data you need to add an application to your account.
management-applications.app-key-change-warning-title = Changing the App key
management-applications.app-key-change-warning = Changing the app key will cause all users from this point on to be recorded as new users even if they used your application before. This action is only recommended if you are migrating an application from another server or changing the app key of a new application.
management-applications.app-key-change-warning-confirm = Continue, change the app key
management-applications.app-key-change-warning-EE = Changing the app key will cause all users from this point on to be recorded as new users even if they used your application before. This action is only recommended if you are migrating an application from another server or changing the app key of a new application. If your intention was to change the app key to stop collecting data for this application, recommended way of doing so is using Filtering Rules plugin.
management-applications.first-app-message2 = Great\! You can now embed Countly SDK into your application and start viewing your stats instantly. Don't forget to get your App Key from above.
management-applications.types.mobile = Mobile
management-applications.checksum-salt = Salt for checksum
management-applications.checksum-salt.hint = Will only accept requests where checksum is signed with the same salt in SDK
management-applications.app-domain = Website Domain
management-applications.app-creator = App created by
management-applications.app-created-at = Date of creation
management-applications.app-edited-at = Last edited
management-applications.app-last-data = Last data recorded (excluding Data Populator)
management-applications.app-users = Users with privileges
management-applications.global_admins = Global admins
management-applications.admins = Admins
management-applications.users = Users
management-applications.plugins = App settings
management-applications.plugins.save = Save
management-applications.plugins.smth = Something went wrong
management-applications.plugins.ok = OK, I understand
management-applications.plugins.save.nothing = No changes to save
management-applications.plugins.saved.nothing = No changes have been applied to this application
management-applications.plugins.saved.title = Plugin configuration
management-applications.plugins.saved = Changes saved successfully!
management-applications.plugins.error.server = Unknown server error
management-applications.create-first-app-title = Let's add your first application.
management-applications.create-first-app-description = After adding your first application you'll be ready to start collecting data.
management-applications.contact-an-admin = Please contact an administrator
management-applications.dont-access = You don't access rights to any application.
management-applications.plugins-description = Settings in this section will override global settings for the application
management-applications.application-lock-tooltip = Application lock prevents accidental data purge and data population
management-applications.application-tooltip-locked-text = App is locked. Unlock it to allow changes.
management-applications.application-tooltip-unlocked-text = App is unlocked. Lock it to restrict changes.
#management-users
management-users.read-permission-given-feature = Read permission granted automatically for
management-users.other-permissions-for = Other permissions for
management-users.removed-because-disabled = revoked automatically because of read permission disabled.
management-users.read-permission-all = Read permission automatically granted to all features.
management-users.other-permissions-removed = Other permissions revoked automatically because of read permission disabled.
management-users.permission-set-will-be-removed = Permission set will be removed
management-users.are-you-sure-to-continue = Are you sure to continue?
management-users.grant-user-access-to-apps = Grant User Access to Apps(s)
management-users.grant-user-access-to-apps-desc = Set user permissions in app and feature level
management-users.grant-admin-access-to-apps = Grant Admin Access to Apps(s)
management-users.grant-admin-access-description = User will have admin access to selected app(s)
management-users.add-permission-set = + Add Additional User Permission Set
management-users.profile-picture = Profile Picture
management-users.apps = Apps
management-users.sidebar-title = User Management
management-users.users = Users
management-users.view-title = Manage Users
management-users.editing-your-account = You\'re about to edit your own account. So you may be logged out automatically if changed something related with your permission. Do you want to contiue?
management-users.feature = Feature
management-users.create = Create
management-users.read = Read
management-users.update = Update
management-users.delete = Delete
management-users.edit-user = Edit settings
management-users.save-changes = Save Changes
management-users.create-new-user = Create new user
management-users.remove-permission-set = Remove permission set
management-users.create-user = Create user
management-users.discard-changes = Discard Changes
management-users.discard-confirm = You will lose all changes that you made. Are you sure to continue?
management-users.permission-settings = Permission settings
management-users.user-has-access-to = User has access to
management-users.role = Role
management-users.global-administrator = Global Administrator
management-users.full-name = Full Name
management-users.enter-full-name = Enter Full Name
management-users.username = Username
management-users.enter-username = Enter Username
management-users.password = Password
management-users.generate-password = Generate password
management-users.enter-password = Enter Password
management-users.generate-password = Generate Password
management-users.change-password = Change password
management-users.role = Role
management-users.drag-and-drop-or = Drag and drop file here or
management-users.click-to-upload = click to upload a file
management-users.browser = browser
management-users.files-to-add-picture = files to add picture
management-users.pp-size-warning = JPG, PNG and GIF files allowed. Maximum size is 5 MB.
management-users.remove-image = Remove image
management-users.email = E-mail
management-users.enter-email = Enter E-mail address
management-users.global-admin = Global Admin
management-users.lock-account = Lock Account
management-users.time-banned = Time Banned
management-users.remove-ban = Remove Ban
management-users.remove-ban-notify-title = Time ban removed.
management-users.remove-ban-notify-message = User time ban removed successfully.
management-users.admin = Admin
management-users.admin-of = Admin of
management-users.admin-of.tip = User is not the administrator of any application...
management-users.user = User
management-users.user-of = User of
management-users.user-of.tip = User does not have view rights to any application...
management-users.no-role = No role
management-users.create-user = Create User
management-users.delete-user = Delete User
management-users.edit = Click to edit
management-users.disable-2fa-user = Disable 2FA
management-users.all-roles = All roles
management-users.not-logged-in-yet = Not logged in yet
management-users.close = Click to close
management-users.password-change-confirm = You have changed {0}\''s password. Do you want a notification email to be sent?
management-users.delete-confirm = You are about to delete {0}\''s account. Do you want to continue?
management-users.delete-confirm-title = Delete user?
management-users.yes-delete-user = Yes, delete user
management-users.email.invalid = invalid email
management-users.email.exists = email exists
management-users.username.exists = username exists
management-users.password.length = Password must be at least {0} characters long
management-users.password.has-char = Password must contain at least one uppercase letter
management-users.password.has-number = Password must contain at least one number
management-users.password.has-special = Password must contain at least one special character (?_*#!-$@,. etc)
management-users.add-user = Add user
management-users.revoke-access = Revoke Access
management-users.admin-user-alert = You need to assign the user as an admin or user at least to a single app
management-users.revoke-confirm = You are about to remove this user's access to your apps. Do you want to continue?
management-users.email-tip = User will be notified even if there is not an account for this email...
management-users.last_login = Last Login
management-users.created = Created
management-users.created-message = User created successfully\!
management-users.removed = Removed
management-users.removed-message = User removed successfully\!
management-users.remove-canceled = User remove canceled
management-users.updated = Updated
management-users.updated-message = User informations updated successfully\!
management-users.confirm-loss-checkboxes = You will lose all marked permissions below. Are you sure you want to continue?
management-users.select-app-first-title = Select app first
management-users.select-app-first-message = You need to select app or apps before you mark permission boxes
management-users.full-name-required = Full name area should be filled
management-users.username-required = Username area should be filled
management-users.email-required = E-mail area should be filled
management-users.email-invalid-format = Please check your email format
management-users.at-least-one-app-required = User should have permission for at least one app
management-users.view-user-logs = View user logs
management-users.this-will-delete-user = This will permanently delete the user. Continue?
management-users.warning = Warning
management-users.future-plugins = User will have this access type to all additional features that might be enabled in the future.
management-users.all-groups = All groups
management-users.group = Group
management-users.group-blank = -
management-users.reset-filters = Reset Filters
management-users.search-placeholder = Search in Features
management-users.reset-failed-logins = Reset failed logins
management-users.reset-failed-logins-success = Failed logins reset successfully\!
management-users.reset-failed-logins-failed = Failed to reset logins\!
management-users.cannot-delete-own-account = You can not delete your own account
management-users.cannot-revoke-own-admin = You can not revoke your own global admin privileges
#date-preset
management.preset = Date presets
management.preset.name = Preset name
management.preset.placeholder = Enter preset name
management.preset.visibility = Visibility
management.preset.visibility.all-users = Public
management.preset.visibility.none = Private
management.preset.visibility.selected-users = Shared
management.preset.user-permissions = User permissions
management.preset.users-edit-permission = Edit permission
management.preset.users-edit-description = Select users who can view and edit the preset
management.preset.enter-user-email = Enter user email
management.preset.sharing-disabled = Adding or editing users is disabled by global administrator
management.preset.users-view-permission = View-only permission
management.preset.users-view-description = Select users who can only view the preset and can't do any editing.
management.preset.user-group-permission = User group permission
management.preset.select-user-group = Select user groups
management.preset.create-button = New date preset
management.preset.manage-button-tooltip = Edit and remove your presets
management.preset.create-new-preset = Create new date preset
management.preset.edit-preset = Edit date preset
management.preset.duplicate-preset = Duplicate date preset
management.preset.date-range = Date range
management.preset.exclude-current-day = Exclude current day
management.preset.exclude-current-day.description = By excluding the current day, results may change as the day has not yet ended.
management.preset.created = Preset created successfully\!
management.preset.updated = Preset updated successfully\!
management.preset.deleted = Preset deleted successfully\!
management.preset.created.error = Something went wrong while creating preset.
management.preset.updated.error = Something went wrong while updating preset.
management.preset.deleted.error = Something went wrong while deleting preset.
management.preset.delete-preset = Delete date preset
management.preset.delete-preset-confirm = Are you sure you want to delete <b>{0}</b> ?
management.preset.delete-preset-confirm-generic = this preset
management.preset.column.name = Name
management.preset.column.range = Date range
management.preset.column.owner = Owner
management.preset.column.visibility = Visibility
management.preset.empty.title = No date presets