@openui5/sap.ui.ux3 1.96.24 → 1.96.25

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.
Files changed (34) hide show
  1. package/package.json +4 -4
  2. package/src/sap/ui/ux3/.library +1 -1
  3. package/src/sap/ui/ux3/ActionBar.js +1 -1
  4. package/src/sap/ui/ux3/Collection.js +1 -1
  5. package/src/sap/ui/ux3/CollectionInspector.js +1 -1
  6. package/src/sap/ui/ux3/DataSet.js +1 -1
  7. package/src/sap/ui/ux3/DataSetItem.js +1 -1
  8. package/src/sap/ui/ux3/DataSetSimpleView.js +1 -1
  9. package/src/sap/ui/ux3/Exact.js +1 -1
  10. package/src/sap/ui/ux3/ExactArea.js +1 -1
  11. package/src/sap/ui/ux3/ExactAttribute.js +1 -1
  12. package/src/sap/ui/ux3/ExactBrowser.js +1 -1
  13. package/src/sap/ui/ux3/ExactList.js +1 -1
  14. package/src/sap/ui/ux3/FacetFilter.js +1 -1
  15. package/src/sap/ui/ux3/FacetFilterList.js +1 -1
  16. package/src/sap/ui/ux3/Feed.js +1 -1
  17. package/src/sap/ui/ux3/FeedChunk.js +1 -1
  18. package/src/sap/ui/ux3/Feeder.js +1 -1
  19. package/src/sap/ui/ux3/NavigationBar.js +1 -1
  20. package/src/sap/ui/ux3/NavigationItem.js +1 -1
  21. package/src/sap/ui/ux3/NotificationBar.js +1 -1
  22. package/src/sap/ui/ux3/Notifier.js +1 -1
  23. package/src/sap/ui/ux3/Overlay.js +1 -1
  24. package/src/sap/ui/ux3/OverlayContainer.js +1 -1
  25. package/src/sap/ui/ux3/OverlayDialog.js +1 -1
  26. package/src/sap/ui/ux3/QuickView.js +1 -1
  27. package/src/sap/ui/ux3/Shell.js +1 -1
  28. package/src/sap/ui/ux3/ThingAction.js +1 -1
  29. package/src/sap/ui/ux3/ThingGroup.js +1 -1
  30. package/src/sap/ui/ux3/ThingInspector.js +1 -1
  31. package/src/sap/ui/ux3/ThingViewer.js +1 -1
  32. package/src/sap/ui/ux3/ToolPopup.js +1 -1
  33. package/src/sap/ui/ux3/library.js +2 -2
  34. package/src/sap/ui/ux3/messagebundle_en.properties +117 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.ux3",
3
- "version": "1.96.24",
3
+ "version": "1.96.25",
4
4
  "description": "OpenUI5 UI Library sap.ui.ux3",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,8 +14,8 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.commons": "1.96.24",
18
- "@openui5/sap.ui.core": "1.96.24",
19
- "@openui5/sap.ui.unified": "1.96.24"
17
+ "@openui5/sap.ui.commons": "1.96.25",
18
+ "@openui5/sap.ui.core": "1.96.25",
19
+ "@openui5/sap.ui.unified": "1.96.25"
20
20
  }
21
21
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.96.24</version>
9
+ <version>1.96.25</version>
10
10
 
11
11
  <documentation>Controls that implement the SAP User Experience (UX) Guidelines 3.0</documentation>
12
12
 
@@ -72,7 +72,7 @@ sap.ui.define([
72
72
  *
73
73
  * When using this control, please be aware that it fulfills rather specific requirements: it has been designed for and is used within composite controls QuickView and ThingInspector.
74
74
  * @extends sap.ui.core.Control
75
- * @version 1.96.24
75
+ * @version 1.96.25
76
76
  *
77
77
  * @constructor
78
78
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', 'sap/ui/model/SelectionModel', './library'
20
20
  * @class
21
21
  * Collection
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.96.24
23
+ * @version 1.96.25
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @class
30
30
  * CollectionInspector
31
31
  * @extends sap.ui.core.Control
32
- * @version 1.96.24
32
+ * @version 1.96.25
33
33
  *
34
34
  * @constructor
35
35
  * @public
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * @class
45
45
  * DataSet
46
46
  * @extends sap.ui.core.Control
47
- * @version 1.96.24
47
+ * @version 1.96.25
48
48
  *
49
49
  * @constructor
50
50
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
20
20
  * @class
21
21
  * DataSet Item
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.96.24
23
+ * @version 1.96.25
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * DataSetSimpleView provides a simple view example for DataSet usage.
38
38
  * @extends sap.ui.core.Control
39
39
  * @implements sap.ui.ux3.DataSetView
40
- * @version 1.96.24
40
+ * @version 1.96.25
41
41
  *
42
42
  * @constructor
43
43
  * @public
@@ -52,7 +52,7 @@ sap.ui.define([
52
52
  * @extends sap.ui.core.Control
53
53
  *
54
54
  * @author SAP SE
55
- * @version 1.96.24
55
+ * @version 1.96.25
56
56
  *
57
57
  * @constructor
58
58
  * @public
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @extends sap.ui.core.Control
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.96.24
32
+ * @version 1.96.25
33
33
  *
34
34
  * @constructor
35
35
  * @public
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.96.24
26
+ * @version 1.96.25
27
27
  *
28
28
  * @constructor
29
29
  * @public
@@ -50,7 +50,7 @@ sap.ui.define([
50
50
  * @extends sap.ui.core.Control
51
51
  *
52
52
  * @author SAP SE
53
- * @version 1.96.24
53
+ * @version 1.96.25
54
54
  *
55
55
  * @constructor
56
56
  * @public
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  * @extends sap.ui.core.Control
63
63
  *
64
64
  * @author SAP SE
65
- * @version 1.96.24
65
+ * @version 1.96.25
66
66
  *
67
67
  * @constructor
68
68
  * @public
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * @extends sap.ui.core.Control
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.96.24
34
+ * @version 1.96.25
35
35
  *
36
36
  * @constructor
37
37
  * @public
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Control
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.96.24
31
+ * @version 1.96.25
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -51,7 +51,7 @@ sap.ui.define([
51
51
  * @extends sap.ui.core.Control
52
52
  *
53
53
  * @author SAP SE
54
- * @version 1.96.24
54
+ * @version 1.96.25
55
55
  *
56
56
  * @constructor
57
57
  * @public
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * @extends sap.ui.core.Control
50
50
  *
51
51
  * @author SAP SE
52
- * @version 1.96.24
52
+ * @version 1.96.25
53
53
  *
54
54
  * @constructor
55
55
  * @public
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * @extends sap.ui.core.Control
50
50
  *
51
51
  * @author SAP SE
52
- * @version 1.96.24
52
+ * @version 1.96.25
53
53
  *
54
54
  * @constructor
55
55
  * @public
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  * @extends sap.ui.core.Control
63
63
  *
64
64
  * @author SAP SE
65
- * @version 1.96.24
65
+ * @version 1.96.25
66
66
  *
67
67
  * @constructor
68
68
  * @public
@@ -22,7 +22,7 @@ sap.ui.define(['sap/ui/core/Item', './library'],
22
22
  * @extends sap.ui.core.Item
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.96.24
25
+ * @version 1.96.25
26
26
  *
27
27
  * @constructor
28
28
  * @public
@@ -56,7 +56,7 @@ sap.ui.define([
56
56
  * @extends sap.ui.core.Control
57
57
  *
58
58
  * @author SAP SE
59
- * @version 1.96.24
59
+ * @version 1.96.25
60
60
  *
61
61
  * @constructor
62
62
  * @public
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @extends sap.ui.core.Element
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.96.24
39
+ * @version 1.96.25
40
40
  *
41
41
  * @constructor
42
42
  * @public
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @implements sap.ui.core.PopupInterface
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.96.24
38
+ * @version 1.96.25
39
39
  *
40
40
  * @constructor
41
41
  * @public
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.ux3.Overlay
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.96.24
31
+ * @version 1.96.25
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @class
27
27
  * Dialog implementation based on the Overlay. If used in a Shell it leaves the Tool-Palette, Pane-Bar and Header-Items accessible.
28
28
  * @extends sap.ui.ux3.Overlay
29
- * @version 1.96.24
29
+ * @version 1.96.25
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @extends sap.ui.commons.CalloutBase
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.96.24
39
+ * @version 1.96.25
40
40
  *
41
41
  * @constructor
42
42
  * @public
@@ -88,7 +88,7 @@ sap.ui.define([
88
88
  * The Ux3 GoldReflection Shell, which is an application frame with navigation capabilities.
89
89
  * It is supposed to be added to a direct child of the BODY tag of a page and there should be no other parts of the page consuming space outside the Shell.
90
90
  * @extends sap.ui.core.Control
91
- * @version 1.96.24
91
+ * @version 1.96.25
92
92
  *
93
93
  * @constructor
94
94
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
20
20
  * @class
21
21
  * Thing Action for Swatch, QuickView, Thinginspector
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.96.24
23
+ * @version 1.96.25
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
20
20
  * @class
21
21
  * Thing Group Area
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.96.24
23
+ * @version 1.96.25
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -42,7 +42,7 @@ sap.ui.define([
42
42
  * @class
43
43
  * Thing Inspector
44
44
  * @extends sap.ui.ux3.Overlay
45
- * @version 1.96.24
45
+ * @version 1.96.25
46
46
  *
47
47
  * @constructor
48
48
  * @public
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * ThingViewer: Same as ThingInspector but decoupled from the Overlay and the ActionBar.
34
34
  * The control can be added to a Parent container that has a defined width. The ThingViewer fill the whole container. If the parent container has no width defined the control will not work properly.
35
35
  * @extends sap.ui.core.Control
36
- * @version 1.96.24
36
+ * @version 1.96.25
37
37
  *
38
38
  * @constructor
39
39
  * @public
@@ -63,7 +63,7 @@ sap.ui.define([
63
63
  *
64
64
  * @namespace
65
65
  * @author SAP SE
66
- * @version 1.96.24
66
+ * @version 1.96.25
67
67
  *
68
68
  * @constructor
69
69
  * @public
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @namespace
21
21
  * @name sap.ui.ux3
22
22
  * @author SAP SE
23
- * @version 1.96.24
23
+ * @version 1.96.25
24
24
  * @public
25
25
  * @since 0.13
26
26
  * @deprecated Since 1.38
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  // delegate further initialization of this library to the Core
30
30
  sap.ui.getCore().initLibrary({
31
31
  name : "sap.ui.ux3",
32
- version: "1.96.24",
32
+ version: "1.96.25",
33
33
  dependencies : ["sap.ui.core","sap.ui.commons"],
34
34
  types: [
35
35
  "sap.ui.ux3.ActionBarSocialActions",
@@ -1,125 +1,242 @@
1
+ #This is the resource bundle for the sap.ui.ux3 library
2
+ #
1
3
 
4
+ #XHED: title of the browse area of the Exact pattern
2
5
  EXACT_BRWSR_TITLE=Browse
6
+ #XHED: title of topmost list of the browse area of the Exact pattern
3
7
  EXACT_BRWSR_LST_TITLE=Attributes
8
+ #XBUT: text of reset button of the browse area of the Exact pattern
4
9
  EXACT_BRWSR_RESET=Reset
10
+ #XBUT: text of save button of the browse area of the Exact pattern
5
11
  EXACT_BRWSR_SAVE=Save
12
+ #XBUT: text of save button on the save dialog of the browse area of the Exact pattern
6
13
  EXACT_BRWSR_DLG_SAVE=Save
14
+ #XBUT: text of cancel button on the save dialog of the browse area of the Exact pattern
7
15
  EXACT_BRWSR_DLG_CANCEL=Cancel
16
+ #XFLD: label of name input field on the save dialog of the browse area of the Exact pattern
8
17
  EXACT_BRWSR_DLG_LABEL=Search Name
18
+ #XTOL: tooltip for expand icon of a list in the Exact pattern
9
19
  EXACT_LST_LIST_EXPAND=Expand
20
+ #XTOL: tooltip for collapse icon of a list in the Exact pattern
10
21
  EXACT_LST_LIST_COLLAPSE=Collapse
22
+ #XTOL: tooltip for close icon of a list in the Exact pattern
11
23
  EXACT_LST_LIST_CLOSE=Deselect and Close
24
+ #XACT: ARIA label of list in the Exact pattern ({0} is the level number in the list hierarchy, {1} is the label text)
12
25
  EXACT_LST_LIST_ARIA_LABEL=Level {0} {1}, list expanded; to collapse, press ALT and the NUMPAD MINUS key
26
+ #XACT: ARIA label of collapsed list in the Exact pattern ({0} is the level number in the list hierarchy, {1} is the label text)
13
27
  EXACT_LST_LIST_COLL_ARIA_LABEL=Level {0} {1}, list collapsed; to expand, press ALT and the NUMPAD PLUS key
28
+ #XACT: ARIA label of list item in a list in the Exact pattern ({0} is the label text)
14
29
  EXACT_LST_LIST_ITEM_ARIA_LABEL={0} has sublist
30
+ #XACT: ARIA label of selected list item in a list in the Exact pattern ({0} is the label text)
15
31
  EXACT_LST_LIST_ITEM_SEL_ARIA_LABEL={0} has sublist; use arrow keys to navigate
16
32
 
33
+ #XTIT: number of comments for an feed chunk
17
34
  FEED_NO_COMMENTS={0} Comments
35
+ #XTOL: tooltip for expand button
18
36
  FEED_EXPAND=Show Complete Text
37
+ #XTOL: tooltip for collapse button
19
38
  FEED_COLLAPSE=Collapse Text
39
+ #XLNK
20
40
  FEED_ALL_COMMENTS=View All Comments
41
+ #XLNK
21
42
  FEED_MAX_COMMENTS=View Recent Comments
43
+ #XTXT: text if feeder is empty
22
44
  FEED_EMPTY_FEEDER=Post an Update ...
45
+ #XHED: title of the feed page
23
46
  FEED_TITLE=FEED
47
+ #XTXT: text of live button
24
48
  FEED_LIVE=Live
49
+ #XTOL: tooltip for tools menu button
25
50
  FEED_TOOLS=Tools
51
+ #XTOL: tooltip for deleting a chunk
26
52
  FEED_DELETE=Delete
53
+ #XTOL: tooltip for status icon flagged
27
54
  FEED_FLAGGED=Flagged
55
+ #XTOL: tooltip for status icon favorite
28
56
  FEED_FAVORITE=Favorite
57
+ #XTOL: tooltip for status icon shared
29
58
  FEED_SHARED=Shared
59
+ #XTOL: tooltip for button to comment a chunk
30
60
  FEED_ACT_COMMENT=Comment
61
+ #XTOL: tooltip for button to flag a chunk
31
62
  FEED_ACT_FLAG=Flag
63
+ #XTOL: tooltip for button to favorite a chunk
32
64
  FEED_ACT_FAVORITE=Set Favorite
65
+ #XTOL: tooltip for button to inspect a chunk
33
66
  FEED_ACT_INSPECT=Inspect
67
+ #XTOL: tooltip for button to share a chunk
34
68
  FEED_ACT_SHARE=Share
35
69
 
70
+ #XTOL: tooltip of the logout button in the header area of the application shell, logs the user out of the application
36
71
  SHELL_LOGOUT=Logout
72
+ #XTOL: generic default tooltip of the logo image in the header of the application shell; typically the application will override this
37
73
  SHELL_LOGO=Logo
74
+ #XACT: accessibility explanation of the left-hand toolbar that can contain generic tools like Search, Feeder and ThingInspector
38
75
  SHELL_TOOLPANE_GENERIC=Provides access to the following common tools\:
76
+ #XACT: accessibility explanation of the left-hand toolbar that contains application-specific tools
39
77
  SHELL_TOOLPANE_APP=Provides access to application tools such as Quick Create
78
+ #XFLD: label of the search field in the Shell
40
79
  SHELL_SEARCH_LABEL=Search
80
+ #XTOL: tooltip of the button in the application shell that opens the Search tool
41
81
  SHELL_SEARCH=Search
82
+ #XTOL: tooltip of the button in the application shell that opens the Feeder tool which is used to add new feed entries
42
83
  SHELL_FEEDER=Feeder
84
+ #XBUT: default text for the pane bar overflow button. Will be replaced with the menu item when selected.
43
85
  SHELL_MORE_BUTTON=More...
44
86
 
87
+ #XACT: ARIA description on how to close the dialog
45
88
  DIALOG_CLOSE_HELP=To close dialog, press ESC
46
89
 
90
+ #XTOL: Thing Inspector follow action tooltip (context: subscribe - similar to RSS following)
47
91
  TI_FOLLOW_ACTION_TOOLTIP_FOLLOW=Follow
92
+ #XTOL: Thing Inspector follow action tooltip (context: subscribe - similar to RSS following)
48
93
  TI_FOLLOW_ACTION_TOOLTIP_STOPPAUSE_FOLLOW=Stop or Pause Following
94
+ #XTOL: Thing Inspector follow action tooltip (context: subscribe - similar to RSS following)
49
95
  TI_FOLLOW_ACTION_TOOLTIP_STOPCONTINUE_FOLLOW=Stop or Continue Following
96
+ #XMIT: Thing Inspector follow action menu text (context: subscribe - similar to RSS following)
50
97
  TI_FOLLOW_ACTION_MENU_TXT_UNFOLLOW=Stop Following
98
+ #XMIT: Thing Inspector follow action menu text (context: subscribe - similar to RSS following)
51
99
  TI_FOLLOW_ACTION_MENU_TXT_UNHOLD=Continue Following
100
+ #XMIT: Thing Inspector follow action menu text (context: subscribe - similar to RSS following)
52
101
  TI_FOLLOW_ACTION_MENU_TXT_HOLD=Pause Following
102
+ #XTOL: Thing Inspector update action tooltip
53
103
  TI_UPDATE_ACTION_TOOLTIP=Post update
104
+ #XTOL: Thing Inspector flag action tooltip
54
105
  TI_FLAG_ACTION_TOOLTIP=Flag
106
+ #XTOL: Thing Inspector favorite action tooltip
55
107
  TI_FAVORITE_ACTION_TOOLTIP=Favorite
108
+ #XTOL: Overlay close button tooltip
56
109
  OVERLAY_CLOSE_BUTTON_TOOLTIP=Close
110
+ #XTOL: Overlay open button tooltip
57
111
  OVERLAY_OPEN_BUTTON_TOOLTIP=Open in New Window
112
+ #XBUT: Overlay open button text
58
113
  OVERLAY_OPEN_BUTTON_TEXT=Open
114
+ #XTOL: ActionBar update action tooltip
59
115
  ACTIONBAR_UPDATE_ACTION_TOOLTIP=Post Update
116
+ #XTOL: ActionBar flag action tooltip
60
117
  ACTIONBAR_FLAG_ACTION_TOOLTIP=Flag
118
+ #XTOL: ActionBar follow action tooltip (context: subscribe - similar to RSS following)
61
119
  ACTIONBAR_FOLLOW_ACTION_TOOLTIP_FOLLOW=Follow
120
+ #XTOL: ActionBar follow action tooltip (context: subscribe - similar to RSS following)
62
121
  ACTIONBAR_FOLLOW_ACTION_TOOLTIP_STOPPAUSE_FOLLOW=Stop or Pause Following
122
+ #XTOL: ActionBar follow action tooltip (context: subscribe - similar to RSS following)
63
123
  ACTIONBAR_FOLLOW_ACTION_TOOLTIP_STOPCONTINUE_FOLLOW=Stop or Continue Following
124
+ #XTOL: ActionBar favorite action tooltip
64
125
  ACTIONBAR_FAVORITE_ACTION_TOOLTIP=Favorite
126
+ #XTOL: ActionBar open thing action tooltip
65
127
  ACTIONBAR_OPEN_THING_ACTION_TOOLTIP=Open
128
+ #XTOL: ActionBar tools menu tooltip
66
129
  ACTIONBAR_TOOLS_ACTION_TOOLTIP=Other Actions
130
+ #XTOL: ActionBar tools menu tooltip
67
131
  ACTIONBAR_TOOLS_MENU_TOOLTIP=Other Actions
132
+ #XTOL: ActionBar More button
68
133
  ACTIONBAR_BUTTON_MORE_TEXT=More
134
+ #XTOL: ActionBar More button
69
135
  ACTIONBAR_BUTTON_MORE_TOOLTIP=Other Actions
70
136
 
71
137
 
138
+ #NOTR
72
139
  FEEDER_COMMENT_INPLACE=Write a comment...
140
+ #NOTR
73
141
  FEEDENTRY_TIME_UNKNOWN=unknown
142
+ #NOTR
74
143
  FEEDENTRY_TIME_SECOND={0} second ago
144
+ #NOTR
75
145
  FEEDENTRY_TIME_MINUTE={0} minute ago
146
+ #NOTR
76
147
  FEEDENTRY_TIME_HOUR={0} hour ago
148
+ #NOTR
77
149
  FEEDENTRY_TIME_DAY={0} day ago
150
+ #NOTR
78
151
  FEEDENTRY_TIME_WEEK={0} week ago
152
+ #NOTR
79
153
  FEEDENTRY_TIME_MONTH={0} month ago
154
+ #NOTR
80
155
  FEEDENTRY_TIME_YEAR={0} year ago
156
+ #NOTR
81
157
  FEEDENTRY_TIME_SECONDS={0} seconds ago
158
+ #NOTR
82
159
  FEEDENTRY_TIME_MINUTES={0} minutes ago
160
+ #NOTR
83
161
  FEEDENTRY_TIME_HOURS={0} hours ago
162
+ #NOTR
84
163
  FEEDENTRY_TIME_DAYS={0} days ago
164
+ #NOTR
85
165
  FEEDENTRY_TIME_WEEKS={0} weeks ago
166
+ #NOTR
86
167
  FEEDENTRY_TIME_MONTHS={0} months ago
168
+ #NOTR
87
169
  FEEDENTRY_TIME_YEARS={0} years ago
170
+ #NOTR
88
171
  FEEDENTRY_LABEL_COL_COMMENTS=View all {0} comments
172
+ #NOTR
89
173
  FEEDENTRY_LABEL_EXP_COMMENT={0} comment
174
+ #NOTR
90
175
  FEEDENTRY_LABEL_EXP_COMMENTS={0} comments
176
+ #NOTR
91
177
  FEED_YOU=You
178
+ #NOTR
92
179
  FEED_ACTION_FEED_SETTINGS=Feed settings
180
+ #NOTR
93
181
  FEED_ACTION_SOURCES=Sources
182
+ #NOTR
94
183
  FEED_FILTER_ALL=All
184
+ #NOTR
95
185
  FEED_INTERVAL_LIVE=Live
186
+ #NOTR
96
187
  FEED_INTERVAL_PAUSE=Pause
188
+ #NOTR
97
189
  FEED_INTERVAL_SECONDS=seconds
190
+ #NOTR
98
191
  FEED_SEARCH_STRING=Search String
192
+ #NOTR
99
193
  FLAG=Flag
194
+ #NOTR
100
195
  REMOVE=Remove
196
+ #NOTR
101
197
  RELEVANCE=Relevance\:
198
+ #NOTR
102
199
  SUPPORT=Support
200
+ #NOTR
103
201
  UNSUPPORT=Unsupport
202
+ #XTXT: All Items in the list following by the number of all items in this list
104
203
  FACETFILTER_ALL=All ({0})
204
+ #XTXT: All Items in the list
105
205
  FACETFILTER_NO_COUNT=All
106
206
 
207
+ #XTOL: Text for NotificationBar to enlarge/maximize
107
208
  NOTIBAR_TITLE_ENLARGE=Enlarge
209
+ #XTOL: Text for NotificationBar to minimize
108
210
  NOTIBAR_TITLE_MINIMIZE=Minimize
211
+ #XTOL: Text for NotificationBar to show the bar if it's invisible
109
212
  NOTIBAR_TITLE_BAR_UP=Show Notification Bar
213
+ #XTOL: Text for NotificationBar to hide the bar if it's visible
110
214
  NOTIBAR_TITLE_BAR_DOWN=Hide Notification Bar
215
+ #XTOL: Title for a NotifierView within the NotificationBar if Notifier has items
111
216
  NOTIBAR_NOTIFIER_VIEW_TITLE={0} ({1})
112
217
 
218
+ #XTOL: Text for a normal notifier that tells how many messages are available
113
219
  NOTIBAR_NOTIFIER_COUNT_TEXT_PL={0} messages available
220
+ #XTOL: Text for a normal notifier that tells that one message is available
114
221
  NOTIBAR_NOTIFIER_COUNT_TEXT_SING={0} message available
115
222
 
223
+ #XTOL: Text for message level: no level specified (plural)
116
224
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_NONE_PL={0} messages available\: Highest severity "None"
225
+ #XTOL: Text for message level: no level specified (singular)
117
226
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_NONE_SING={0} message available\: Highest severity "None"
227
+ #XTOL: Text for message level: information level specified (plural)
118
228
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_INFORMATION_PL={0} messages available\: Highest severity "Information"
229
+ #XTOL: Text for message level: information level specified (singular)
119
230
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_INFORMATION_SING={0} message available\: Highest severity "Information"
231
+ #XTOL: Text for message level: success level specified (plural)
120
232
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_SUCCESS_PL={0} messages available\: Highest severity "Success"
233
+ #XTOL: Text for message level: success level specified (singular)
121
234
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_SUCCESS_SING={0} message available\: Highest severity "Success"
235
+ #XTOL: Text for message level: warning level specified (plural)
122
236
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_WARNING_PL={0} messages available\: Highest severity "Warning"
237
+ #XTOL: Text for message level: warning level specified (singular)
123
238
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_WARNING_SING={0} message available\: Highest severity "Warning"
239
+ #XTOL: Text for message level: error level specified (plural)
124
240
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_ERROR_PL={0} messages available\: Highest severity "Error"
241
+ #XTOL: Text for message level: error level specified (singular)
125
242
  NOTIBAR_MESSAGE_NOTIFIER_DESC_LEVEL_ERROR_SING={0} message available\: Highest severity "Error"