@sapui5/sap.fe.controls 1.141.2 → 1.143.0
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/package.json +1 -1
- package/src/sap/fe/controls/.library +1 -1
- package/src/sap/fe/controls/easyFilter/EasyFilterBarContainer.js +3 -2
- package/src/sap/fe/controls/easyFilter/EasyFilterBarContainer.tsx +2 -2
- package/src/sap/fe/controls/easyFilter/EasyFilterInput.js +19 -12
- package/src/sap/fe/controls/easyFilter/EasyFilterInput.tsx +21 -13
- package/src/sap/fe/controls/easyFilter/ShellHistoryProvider.js +7 -5
- package/src/sap/fe/controls/easyFilter/ShellHistoryProvider.tsx +6 -4
- package/src/sap/fe/controls/easyFilter/Token.js +5 -2
- package/src/sap/fe/controls/easyFilter/Token.tsx +5 -1
- package/src/sap/fe/controls/easyFilter/innerControls/CalendarFactory.js +4 -4
- package/src/sap/fe/controls/easyFilter/innerControls/CalendarFactory.ts +2 -3
- package/src/sap/fe/controls/easyFilter/utils.js +159 -89
- package/src/sap/fe/controls/easyFilter/utils.ts +196 -90
- package/src/sap/fe/controls/library.js +1 -1
- package/src/sap/fe/controls/messagebundle.properties +4 -4
- package/src/sap/fe/controls/messagebundle_ar.properties +10 -4
- package/src/sap/fe/controls/messagebundle_bg.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ca.properties +10 -4
- package/src/sap/fe/controls/messagebundle_cnr.properties +10 -4
- package/src/sap/fe/controls/messagebundle_cs.properties +10 -4
- package/src/sap/fe/controls/messagebundle_cy.properties +10 -4
- package/src/sap/fe/controls/messagebundle_da.properties +10 -4
- package/src/sap/fe/controls/messagebundle_de.properties +10 -4
- package/src/sap/fe/controls/messagebundle_el.properties +10 -4
- package/src/sap/fe/controls/messagebundle_en.properties +10 -4
- package/src/sap/fe/controls/messagebundle_en_GB.properties +10 -4
- package/src/sap/fe/controls/messagebundle_en_US_saprigi.properties +10 -4
- package/src/sap/fe/controls/messagebundle_es.properties +10 -4
- package/src/sap/fe/controls/messagebundle_es_MX.properties +10 -4
- package/src/sap/fe/controls/messagebundle_et.properties +10 -4
- package/src/sap/fe/controls/messagebundle_fi.properties +10 -4
- package/src/sap/fe/controls/messagebundle_fr.properties +10 -4
- package/src/sap/fe/controls/messagebundle_fr_CA.properties +10 -4
- package/src/sap/fe/controls/messagebundle_hi.properties +10 -4
- package/src/sap/fe/controls/messagebundle_hr.properties +10 -4
- package/src/sap/fe/controls/messagebundle_hu.properties +10 -4
- package/src/sap/fe/controls/messagebundle_id.properties +10 -4
- package/src/sap/fe/controls/messagebundle_it.properties +10 -4
- package/src/sap/fe/controls/messagebundle_iw.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ja.properties +10 -4
- package/src/sap/fe/controls/messagebundle_kk.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ko.properties +9 -3
- package/src/sap/fe/controls/messagebundle_lt.properties +10 -4
- package/src/sap/fe/controls/messagebundle_lv.properties +10 -4
- package/src/sap/fe/controls/messagebundle_mk.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ms.properties +10 -4
- package/src/sap/fe/controls/messagebundle_nl.properties +10 -4
- package/src/sap/fe/controls/messagebundle_no.properties +10 -4
- package/src/sap/fe/controls/messagebundle_pl.properties +10 -4
- package/src/sap/fe/controls/messagebundle_pt.properties +10 -4
- package/src/sap/fe/controls/messagebundle_pt_PT.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ro.properties +10 -4
- package/src/sap/fe/controls/messagebundle_ru.properties +10 -4
- package/src/sap/fe/controls/messagebundle_sh.properties +10 -4
- package/src/sap/fe/controls/messagebundle_sk.properties +10 -4
- package/src/sap/fe/controls/messagebundle_sl.properties +11 -5
- package/src/sap/fe/controls/messagebundle_sr.properties +10 -4
- package/src/sap/fe/controls/messagebundle_sv.properties +10 -4
- package/src/sap/fe/controls/messagebundle_th.properties +10 -4
- package/src/sap/fe/controls/messagebundle_tr.properties +10 -4
- package/src/sap/fe/controls/messagebundle_uk.properties +10 -4
- package/src/sap/fe/controls/messagebundle_vi.properties +10 -4
- package/src/sap/fe/controls/messagebundle_zh_CN.properties +10 -4
- package/src/sap/fe/controls/messagebundle_zh_TW.properties +10 -4
|
@@ -28,21 +28,32 @@ function areItemsSame(
|
|
|
28
28
|
if (arr1.length !== arr2.length) {
|
|
29
29
|
return false;
|
|
30
30
|
}
|
|
31
|
+
|
|
31
32
|
// Compare elements of both arrays
|
|
32
33
|
for (let i = 0; i < arr1.length; i++) {
|
|
33
34
|
if (
|
|
34
35
|
arr1[i].operator !== arr2[i].operator ||
|
|
35
|
-
!arr1[i].selectedValues.every(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
!arr1[i].selectedValues.every((firstValue, index) => {
|
|
37
|
+
const otherValue = arr2[i].selectedValues[index];
|
|
38
|
+
|
|
39
|
+
// Handle Date objects
|
|
40
|
+
if (firstValue instanceof Date || otherValue instanceof Date) {
|
|
41
|
+
return deepEqual(firstValue, otherValue);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Handle objects with deep equality
|
|
45
|
+
if (typeof firstValue === "object" && typeof otherValue === "object") {
|
|
46
|
+
return deepEqual(firstValue.value, otherValue.value) && firstValue.description === otherValue.description;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Fallback to direct comparison
|
|
50
|
+
return firstValue === otherValue;
|
|
51
|
+
})
|
|
42
52
|
) {
|
|
43
53
|
return false;
|
|
44
54
|
}
|
|
45
55
|
}
|
|
56
|
+
|
|
46
57
|
return true; // Arrays are the same
|
|
47
58
|
}
|
|
48
59
|
|
|
@@ -199,15 +210,67 @@ function convertBoolToString(value: boolean): string {
|
|
|
199
210
|
: resourceBundle.getText("M_EASY_FILTER_SELECTED_VALUES_FALSE");
|
|
200
211
|
}
|
|
201
212
|
|
|
202
|
-
|
|
213
|
+
/**
|
|
214
|
+
* Handles the single range validation and updates for a filter value.
|
|
215
|
+
* @param filterCriteria The metadata for the filter
|
|
216
|
+
* @param filterValue The filter value to validate
|
|
217
|
+
* @param singleRangeTokenLabels Array to collect labels of invalid single range filters
|
|
218
|
+
* @param singleRangeUsage Record to track usage count of single range filters
|
|
219
|
+
* @returns True if processing should continue, false if it should skip and make the existing token as empty
|
|
220
|
+
*/
|
|
221
|
+
function handleSingleRangeFilter(
|
|
222
|
+
filterCriteria: EasyFilterPropertyMetadata,
|
|
223
|
+
filterValue: EasyFilterResult["filter"][0],
|
|
224
|
+
singleRangeTokenLabels: string[],
|
|
225
|
+
singleRangeUsage: Record<string, number>
|
|
226
|
+
): boolean {
|
|
227
|
+
if (filterCriteria?.filterRestriction !== "SingleRange") {
|
|
228
|
+
return true;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
const isInvalid = isInvalidSingleRange(filterValue) || (singleRangeUsage[filterValue.name] ?? 0) > 0;
|
|
232
|
+
singleRangeUsage[filterValue.name] = (singleRangeUsage[filterValue.name] ?? 0) + 1;
|
|
233
|
+
|
|
234
|
+
if (!isInvalid) {
|
|
235
|
+
return true;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
const label = filterCriteria.label || filterCriteria.name;
|
|
239
|
+
if (!singleRangeTokenLabels.includes(label)) {
|
|
240
|
+
singleRangeTokenLabels.push(label);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
filterValue.values = [];
|
|
244
|
+
return false;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
// Validates if a filter value violates the SingleRange restriction.
|
|
248
|
+
// Returns true if invalid, false if valid.
|
|
249
|
+
// Rules for SingleRange:
|
|
250
|
+
// - Allowed operators: EQ, LE, LT, GE, GT, BT, NB
|
|
251
|
+
// - Single-value operators (EQ, LE, LT, GE, GT): must have exactly 1 value
|
|
252
|
+
// - Range operators (BT, NB): must have exactly 2 values (lower & upper bound)
|
|
253
|
+
// - Only one condition/token is allowed per property (should be enforced outside)
|
|
254
|
+
//
|
|
203
255
|
function isInvalidSingleRange(filterValue: { operator: FilterOperator; values: (string | number | Date | boolean)[] }): boolean {
|
|
204
|
-
const
|
|
256
|
+
const singleValueOps = [FilterOperator.EQ, FilterOperator.LE, FilterOperator.LT, FilterOperator.GE, FilterOperator.GT];
|
|
257
|
+
const rangeOps = [FilterOperator.BT, FilterOperator.NB];
|
|
258
|
+
|
|
259
|
+
const op = filterValue.operator;
|
|
260
|
+
const valCount = filterValue.values?.length || 0;
|
|
261
|
+
|
|
262
|
+
// Single-value operators → must have exactly 1 value
|
|
263
|
+
if (singleValueOps.includes(op)) {
|
|
264
|
+
return valCount !== 1;
|
|
265
|
+
}
|
|
205
266
|
|
|
206
|
-
//
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
267
|
+
// Range operators (Between / Not Between) → must have exactly 2 values
|
|
268
|
+
if (rangeOps.includes(op)) {
|
|
269
|
+
return valCount !== 2;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// Anything else is not allowed for SingleRange
|
|
273
|
+
return true;
|
|
211
274
|
}
|
|
212
275
|
|
|
213
276
|
function formatData(
|
|
@@ -216,88 +279,131 @@ function formatData(
|
|
|
216
279
|
filterBarMetadata: EasyFilterPropertyMetadata[],
|
|
217
280
|
setMessageStripForValidatedFilters: (msg: string) => void
|
|
218
281
|
): void {
|
|
219
|
-
if (filterValues) {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
const singleRangeTokenLabels: string[] = [];
|
|
223
|
-
const hiddenFilterTokenLabels: string[] = [];
|
|
224
|
-
|
|
225
|
-
for (const filterValue of filterValues) {
|
|
226
|
-
const filterCriteria = filterBarMetadata.find((field) => field.name === filterValue.name);
|
|
227
|
-
if (filterCriteria) {
|
|
228
|
-
// Only block if filterable is false
|
|
229
|
-
if (Object.prototype.hasOwnProperty.call(filterCriteria, "filterable") && !filterCriteria?.filterable) {
|
|
230
|
-
nonFilterableTokenLabels.push(filterCriteria.label || filterCriteria.name);
|
|
231
|
-
continue;
|
|
232
|
-
}
|
|
233
|
-
// Only block if hiddenFilter is true
|
|
234
|
-
if (Object.prototype.hasOwnProperty.call(filterCriteria, "hiddenFilter") && filterCriteria?.hiddenFilter) {
|
|
235
|
-
hiddenFilterTokenLabels.push(filterCriteria.label || filterCriteria.name);
|
|
236
|
-
continue;
|
|
237
|
-
}
|
|
238
|
-
// Only apply SingleRange logic if filterRestriction is set to SingleRange
|
|
239
|
-
if (filterCriteria?.filterRestriction === "SingleRange" && isInvalidSingleRange(filterValue)) {
|
|
240
|
-
singleRangeTokenLabels.push(filterCriteria.label || filterCriteria.name);
|
|
241
|
-
filterValue.values = []; // Reset values to avoid adding invalid token values
|
|
242
|
-
}
|
|
282
|
+
if (!filterValues) {
|
|
283
|
+
return;
|
|
284
|
+
}
|
|
243
285
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
if (tokenIndex === -1) {
|
|
260
|
-
// Add new token if it doesn't exist
|
|
261
|
-
const newToken: TokenDefinition = {
|
|
262
|
-
key: filterValue.name,
|
|
263
|
-
label: filterCriteria.label as string,
|
|
264
|
-
keySpecificSelectedValues: [keySpecificSelectedValues],
|
|
265
|
-
type: type as Exclude<TokenType, "ValueHelp">,
|
|
266
|
-
busy: type === "ValueHelp" ? true : false
|
|
267
|
-
};
|
|
268
|
-
tokens.push(newToken);
|
|
269
|
-
} else {
|
|
270
|
-
// Update existing token
|
|
271
|
-
const currentToken = tokens[tokenIndex];
|
|
272
|
-
//If its default value , override it
|
|
273
|
-
if ((currentToken.isRequired ?? false) && !visitedMapForMandatoryTokens[currentToken.key]) {
|
|
274
|
-
currentToken.keySpecificSelectedValues = [keySpecificSelectedValues];
|
|
275
|
-
visitedMapForMandatoryTokens[currentToken.key] = true;
|
|
276
|
-
} else {
|
|
277
|
-
(currentToken.keySpecificSelectedValues as TokenSelectedValuesDefinition[]).push(keySpecificSelectedValues);
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
}
|
|
286
|
+
const visitedMapForMandatoryTokens: Record<string, boolean> = {};
|
|
287
|
+
const nonFilterableTokenLabels: string[] = [];
|
|
288
|
+
const singleRangeTokenLabels: string[] = [];
|
|
289
|
+
const hiddenFilterTokenLabels: string[] = [];
|
|
290
|
+
const singleRangeUsage: Record<string, number> = {};
|
|
291
|
+
|
|
292
|
+
for (const filterValue of filterValues) {
|
|
293
|
+
const filterCriteria = filterBarMetadata.find((field) => field.name === filterValue.name);
|
|
294
|
+
if (!filterCriteria) {
|
|
295
|
+
continue;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// Handle non-filterable and hidden filters
|
|
299
|
+
if (!processFilterCriteria(filterCriteria, nonFilterableTokenLabels, hiddenFilterTokenLabels)) {
|
|
300
|
+
continue;
|
|
281
301
|
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
302
|
+
|
|
303
|
+
// Validate single range filters
|
|
304
|
+
const isInvalidSingleRangeToken = !handleSingleRangeFilter(filterCriteria, filterValue, singleRangeTokenLabels, singleRangeUsage);
|
|
305
|
+
|
|
306
|
+
// Update tokens
|
|
307
|
+
updateTokens(tokens, filterValue, filterCriteria, visitedMapForMandatoryTokens, isInvalidSingleRangeToken);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
// Handle validation messages
|
|
311
|
+
if (nonFilterableTokenLabels.length > 0 || singleRangeTokenLabels.length > 0 || hiddenFilterTokenLabels.length > 0) {
|
|
312
|
+
setMessageStripForValidatedFilters(
|
|
313
|
+
generateValidationMessages(nonFilterableTokenLabels, singleRangeTokenLabels, hiddenFilterTokenLabels)
|
|
314
|
+
);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
function processFilterCriteria(
|
|
319
|
+
filterCriteria: EasyFilterPropertyMetadata,
|
|
320
|
+
nonFilterableTokenLabels: string[],
|
|
321
|
+
hiddenFilterTokenLabels: string[]
|
|
322
|
+
): boolean {
|
|
323
|
+
if (filterCriteria.filterable === false) {
|
|
324
|
+
nonFilterableTokenLabels.push(filterCriteria.label || filterCriteria.name);
|
|
325
|
+
return false;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
if (filterCriteria.hiddenFilter === true) {
|
|
329
|
+
hiddenFilterTokenLabels.push(filterCriteria.label || filterCriteria.name);
|
|
330
|
+
return false;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
return true;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
function updateTokens(
|
|
337
|
+
tokens: TokenDefinition[],
|
|
338
|
+
filterValue: EasyFilterResult["filter"][0],
|
|
339
|
+
filterCriteria: EasyFilterPropertyMetadata,
|
|
340
|
+
visitedMapForMandatoryTokens: Record<string, boolean>,
|
|
341
|
+
isInvalidSingleRangeToken: boolean
|
|
342
|
+
): void {
|
|
343
|
+
const tokenIndex = tokens.findIndex((token) => token.key === filterValue.name);
|
|
344
|
+
const keySpecificSelectedValues = createKeySpecificSelectedValues(filterValue);
|
|
345
|
+
|
|
346
|
+
if (tokenIndex === -1) {
|
|
347
|
+
// Add new token
|
|
348
|
+
tokens.push({
|
|
349
|
+
key: filterValue.name,
|
|
350
|
+
label: filterCriteria.label as string,
|
|
351
|
+
keySpecificSelectedValues: isInvalidSingleRangeToken ? [] : [keySpecificSelectedValues],
|
|
352
|
+
type: filterCriteria.type as Exclude<TokenType, "ValueHelp">,
|
|
353
|
+
busy: filterCriteria.type === "ValueHelp"
|
|
354
|
+
});
|
|
355
|
+
} else {
|
|
356
|
+
// Update existing token
|
|
357
|
+
const currentToken = tokens[tokenIndex];
|
|
358
|
+
if (isInvalidSingleRangeToken) {
|
|
359
|
+
currentToken.keySpecificSelectedValues = [];
|
|
360
|
+
} else if ((currentToken.isRequired ?? false) && !visitedMapForMandatoryTokens[currentToken.key]) {
|
|
361
|
+
currentToken.keySpecificSelectedValues = [keySpecificSelectedValues];
|
|
362
|
+
visitedMapForMandatoryTokens[currentToken.key] = true;
|
|
363
|
+
} else {
|
|
364
|
+
(currentToken.keySpecificSelectedValues as TokenSelectedValuesDefinition[]).push(keySpecificSelectedValues);
|
|
297
365
|
}
|
|
298
366
|
}
|
|
299
367
|
}
|
|
300
368
|
|
|
369
|
+
function createKeySpecificSelectedValues(filterValue: EasyFilterResult["filter"][0]): TokenSelectedValuesDefinition {
|
|
370
|
+
const { operator, values } = filterValue;
|
|
371
|
+
|
|
372
|
+
if (EasyFilterUtils.isBetweenSelectedValues(operator)) {
|
|
373
|
+
return {
|
|
374
|
+
operator,
|
|
375
|
+
selectedValues: values as BetweenSelectedValues
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
return {
|
|
380
|
+
operator: operator as Exclude<FilterOperator, FilterOperator.BT | FilterOperator.NB>,
|
|
381
|
+
selectedValues: values as string[] | Date[] | number[] | boolean[]
|
|
382
|
+
};
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
function generateValidationMessages(
|
|
386
|
+
nonFilterableTokenLabels: string[],
|
|
387
|
+
singleRangeTokenLabels: string[],
|
|
388
|
+
hiddenFilterTokenLabels: string[]
|
|
389
|
+
): string {
|
|
390
|
+
const messages: string[] = [];
|
|
391
|
+
|
|
392
|
+
if (nonFilterableTokenLabels.length > 0) {
|
|
393
|
+
messages.push(resourceBundle.getText("M_EASY_FILTER_NON_FILTERABLE", [`<strong>${nonFilterableTokenLabels.join(", ")}</strong>`]));
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
if (hiddenFilterTokenLabels.length > 0) {
|
|
397
|
+
messages.push(resourceBundle.getText("M_EASY_FILTER_HIDDEN_FILTER", [`<strong>${hiddenFilterTokenLabels.join(", ")}</strong>`]));
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
if (singleRangeTokenLabels.length > 0) {
|
|
401
|
+
messages.push(resourceBundle.getText("M_EASY_FILTER_SINGLE_RANGE", [`<strong>${singleRangeTokenLabels.join(", ")}</strong>`]));
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
return messages.join("<br>");
|
|
405
|
+
}
|
|
406
|
+
|
|
301
407
|
const EasyFilterUtils = {
|
|
302
408
|
areItemsSame,
|
|
303
409
|
areCodeListsSame,
|
|
@@ -22,7 +22,7 @@ sap.ui.define(["sap/fe/base/library", "sap/fe/controls/shortcuts/ShortcutExplana
|
|
|
22
22
|
controls: [],
|
|
23
23
|
elements: [],
|
|
24
24
|
// eslint-disable-next-line no-template-curly-in-string
|
|
25
|
-
version: "1.
|
|
25
|
+
version: "1.143.0",
|
|
26
26
|
noLibraryCSS: false
|
|
27
27
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
28
28
|
});
|
|
@@ -62,15 +62,15 @@ M_EASY_FILTER_FILLED_STAR=Remove from Favorites
|
|
|
62
62
|
# XMSG
|
|
63
63
|
M_EASY_FILTER_EMPTY_START=Add to Favorites
|
|
64
64
|
# XMSG: Text read out by the screenreader, telling users how to move to the list under the search field containing favorite queries and last used queries, if available
|
|
65
|
-
|
|
65
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=To move to the list of favorite queries and last used queries, press the Arrow Down key
|
|
66
66
|
# XMSG
|
|
67
67
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Only one single value can be applied to the following: {0}
|
|
68
68
|
# XMSG: We need to block the user from filtering on hidden, non-filterable or system-controlled properties, as doing so would conflict with the intended behavior of the app
|
|
69
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
69
|
+
M_EASY_FILTER_NON_FILTERABLE=This specific app doesn''t support filtering on {0}.
|
|
70
70
|
# XMSG: We need to block the user from filtering on hidden, non-filterable or system-controlled properties, as doing so would conflict with the intended behavior of the app
|
|
71
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
71
|
+
M_EASY_FILTER_SINGLE_RANGE=Only one single condition can be applied to {0}.
|
|
72
72
|
# XMSG: We need to block the user from filtering on hidden, non-filterable or system-controlled properties, as doing so would conflict with the intended behavior of the app
|
|
73
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
73
|
+
M_EASY_FILTER_HIDDEN_FILTER=This specific app doesn''t support filtering on {0}.
|
|
74
74
|
# XTIT: Title in the shell user menu to open the shortcut dialog and the dialog title
|
|
75
75
|
C_SHORTCUT_TITLE=Keyboard Shortcuts
|
|
76
76
|
# XMSG,30: Placeholder message for the keyboard interaction input field
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=\u0625\u063A\u0644\u0627\u0642
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=\u0644\u0627 \u062A\u0648\u062C\u062F \u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0627\u062A \u0645\u0633\u062A\u062E\u062F\u0645\u0629 \u0645\u0624\u062E\u0631\u064B\u0627
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=\u0625\u0632\u0627\u0644\u0629 \u0645\u0646 \u0627\u0644\u0645\u0641\u0636\u0644\u0629
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0641\u0636\u0644\u0629
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=\u0644\u0644\u0627\u0646\u062A\u0642\u0627\u0644 \u0625\u0644\u0649 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0627\u062A \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0648\u0622\u062E\u0631 \u0627\u0633\u062A\u0639\u0644\u0627\u0645\u0627\u062A \u0645\u0633\u062A\u062E\u062F\u0645\u0629\u060C \u0627\u0636\u063A\u0637 \u0639\u0644\u0649 \u0627\u0644\u0645\u0641\u062A\u0627\u062D \u0633\u0647\u0645 \u0644\u0623\u0633\u0641\u0644
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=\u064A\u0645\u0643\u0646 \u062A\u0637\u0628\u064A\u0642 \u0642\u064A\u0645\u0629 \u0648\u0627\u062D\u062F\u0629 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0627\u0644\u062A\u0627\u0644\u064A\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=\
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=\u0644\u0627\u062D\u0638 \u0623\u0646\u0647 \u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0637\u0628\u064A\u0642 \u0633\u0648\u0649 \u0634\u0631\u0637 \u0648\u0627\u062D\u062F \u0639\u0644\u0649
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=\
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=\u0647\u0630\u0627 \u0627\u0644\u062A\u0637\u0628\u064A\u0642 \u0627\u0644\u0645\u062D\u062F\u062F \u0644\u0627 \u064A\u062F\u0639\u0645 \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u0641\u064A {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=\u0644\u0627\u062D\u0638 \u0623\u0646\u0647 \u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0637\u0628\u064A\u0642 \u0633\u0648\u0649 \u0634\u0631\u0637 \u0648\u0627\u062D\u062F \u0639\u0644\u0649 {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=\u0647\u0630\u0627 \u0627\u0644\u062A\u0637\u0628\u064A\u0642 \u0627\u0644\u0645\u062D\u062F\u062F \u0644\u0627 \u064A\u062F\u0639\u0645 \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u0641\u064A {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=\u0627\u062E\u062A\u0635\u0627\u0631\u0627\u062A \u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0627\u062E\u062A\u0635\u0627\u0631 \u0644\u0648\u062D\u0629 \u0645\u0641\u0627\u062A\u064A\u062D
|
|
39
39
|
C_SHORTCUT_NODATA=\u062A\u0631\u0643\u064A\u0632 \u0639\u0644\u0649 \u062C\u0632\u0621 \u0645\u0646 \u0627\u0644\u0634\u0627\u0634\u0629 \u0644\u0644\u0627\u0637\u0644\u0627\u0639 \u0639\u0644\u0649 \u0627\u062E\u062A\u0635\u0627\u0631\u0627\u062A \u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=\u0625\u0628\u0647\u0627\u0645 \u0644\u0623\u0639\u0644\u0649 \u0644\u0633\u0647\u0648\u0644\u0629 \u0627\u0644\u062A\u0635\u0641\u064A\u0629
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=\u0625\u0628\u0647\u0627\u0645 \u0644\u0623\u0633\u0641\u0644 \u0644\u0633\u0647\u0648\u0644\u0629 \u0627\u0644\u062A\u0635\u0641\u064A\u0629
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=\u062A\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=\u062A\u062D\u0631\u064A\u0631
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=\u062D\u0641\u0638
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=\u0625\u0644\u063A\u0627\u0621
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=\u0417\u0430\u0442\u0432\u0430\u0440\u044F\u043D\u04
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=\u041D\u044F\u043C\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0438 \u0437\u0430\u043F\u0438\u0442\u0432\u0430\u043D\u0438\u044F
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043E\u0442 \u0444\u0430\u0432\u043E\u0440\u0438\u0442\u0438\u0442\u0435
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043A\u044A\u043C \u0444\u0430\u0432\u043E\u0440\u0438\u0442\u0438\u0442\u0435
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=\u0417\u0430 \u043F\u0440\u0435\u043C\u0438\u043D\u0430\u0432\u0430\u043D\u0435 \u043A\u044A\u043C \u0441\u043F\u0438\u0441\u044A\u043A\u0430 \u0441 \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438 \u0438 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u043E \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0438 \u0437\u0430\u043F\u0438\u0442\u0432\u0430\u043D\u0438\u044F \u043D\u0430\u0442\u0438\u0441\u043D\u0435\u0442\u0435 \u043A\u043B\u0430\u0432\u0438\u0448\u0430 \u0441\u044A\u0441 \u0441\u0442\u0440\u0435\u043B\u043A\u0430 \u043D\u0430\u0434\u043E\u043B\u0443
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=\u0421\u0430\u043C\u043E \u0435\u0434\u043D\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u044A\u0434\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0430 \u043A\u044A\u043C \u0441\u043B\u0435\u0434\u043D\u043E\u0442\u043E\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=\
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=\
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=\
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=\u0422\u043E\u0432\u0430 \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u043D\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=\u0421\u0430\u043C\u043E \u0435\u0434\u043D\u043E \u0443\u0441\u043B\u043E\u0432\u0438\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0438 \u043A\u044A\u043C {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=\u0422\u043E\u0432\u0430 \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u043D\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=\u041A\u043B\u0430\u0432\u0438\u0448\u043D\u0438 \u043A\u043E\u043C\u0431\u0438\u043D\u0430\u0446\u0438\u0438
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=\u0422\u044A\u0440\u0441\u0435\u043D\u0435 \u043D\u0430 \u043A\u043B\u0430\u0432\u0438\u0448\u043D\u0430 \u043A\u043E\u043C\u0431\u0438\u043D\u0430\u0446\u0438\u044F
|
|
39
39
|
C_SHORTCUT_NODATA=\u0424\u043E\u043A\u0443\u0441\u0438\u0440\u0430\u0439\u0442\u0435 \u0447\u0430\u0441\u0442 \u043E\u0442 \u0435\u043A\u0440\u0430\u043D\u0430, \u0437\u0430 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u043A\u043B\u0430\u0432\u0438\u0448\u043D\u0438\u0442\u0435 \u043A\u043E\u043C\u0431\u0438\u043D\u0430\u0446\u0438\u0438
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=\u041F\u0430\u043B\u0435\u0446 \u043D\u0430\u0433\u043E\u0440\u0435 \u0437\u0430 easy filter
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=\u041F\u0430\u043B\u0435\u0446 \u043D\u0430\u0434\u043E\u043B\u0443 \u0437\u0430 easy filter
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=\u041E\u0431\u0440\u0430\u0442\u043D\u0430\u0442\u0430 \u0432\u0440\u044A\u0437\u043A\u0430 \u0435 \u0438\u0437\u043F\u0440\u0430\u0442\u0435\u043D\u0430
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=\u0417\u0430\u043F\u0430\u0437\u0432\u0430\u043D\u0435
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=\u041E\u0442\u043A\u0430\u0437
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Tancar
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=No hi ha \u00FAltimes consultes utilitzades
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Eliminar dels preferits
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=Afegir a preferits
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Per a despla\u00E7ar a la llista de consultes preferides i \u00FAltimes consultes utilitzades, premeu la tecla Fletxa cap avall
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Nom\u00E9s es pot aplicar un valor a l''element seg\u00FCent\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Aquesta aplicaci\u00F3 espec\u00EDfica no admet el filtratge en {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Nom\u00E9s es pot aplicar una condici\u00F3 a {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Aquesta aplicaci\u00F3 espec\u00EDfica no admet el filtratge en {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=Acc\u00E9s r\u00E0pid
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Cercar una drecera de teclat
|
|
39
39
|
C_SHORTCUT_NODATA=Centreu-vos en una part de la pantalla per a veure les dreceres de teclat
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Polzes amunt per al filtre f\u00E0cil
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Polzes avall per al filtre f\u00E0cil
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Comentaris enviats
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Editar
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Desar
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Cancel\u00B7lar
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Zatvori
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=Nema posljednje kori\u0161\u0107enih upita
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Ukloni iz omiljenih
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=Dodaj u omiljene
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Da pomjerite listu omiljenih upita i posljednje kori\u0161\u0107enih upita, pritisnite taster Strelica nadolje
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Samo jedna vrijednost se mo\u017Ee primijeniti na sljede\u0107e\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Ova konkretna aplikacija ne podr\u017Eava filtriranje po {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Samo jedan uslov se mo\u017Ee primijeniti na\: {0}
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Ova konkretna aplikacija ne podr\u017Eava filtriranje po {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=Pre\u010Dice na tastaturi
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Na\u0111i pre\u010Dicu na tastaturi
|
|
39
39
|
C_SHORTCUT_NODATA=Fokusirajte se na odre\u0111eni dio ekrana da vidite pre\u010Dice na tastaturi
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Pozitivna ocjena za lako filtriranje
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Negativna ocjena za lako filtriranje
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Povratne informacije su poslate
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Uredi
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Sa\u010Duvaj
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Odustani
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Zav\u0159\u00EDt
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=Ne naposledy pou\u017Eit\u00E9 dotazy
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Odebrat z obl\u00EDben\u00FDch
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=P\u0159idat k obl\u00EDben\u00FDm
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Pro p\u0159echod k seznamu obl\u00EDben\u00FDch dotaz\u016F a naposledy pou\u017Eit\u00FDch dotaz\u016F stiskn\u011Bte \u0161ipku dol\u016F
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Jen jednu jednotlivou hodnotu lze pou\u017E\u00EDt pro toto\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Tato konkr\u00E9tn\u00ED aplikace nepodporuje filtrov\u00E1n\u00ED podle {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Pro {0} lze pou\u017E\u00EDt jen jednu podm\u00EDnku.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Tato konkr\u00E9tn\u00ED aplikace nepodporuje filtrov\u00E1n\u00ED podle {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=Kl\u00E1vesov\u00E9 zkratky
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Najd\u011Bte kl\u00E1vesovou zkratku
|
|
39
39
|
C_SHORTCUT_NODATA=Zam\u011B\u0159it se na \u010D\u00E1st obrazovky pro kl\u00E1vesov\u00E9 zkratky
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Palce nahoru pro snadn\u00E9 vypln\u011Bn\u00ED
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Palce dol\u016F pro snadn\u00FD filtr
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Zp\u011Btn\u00E1 vazba byla odesl\u00E1na
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Upravit
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Ulo\u017Eit
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Zru\u0161it
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Cau
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=Dim ymholiadau a ddefnyddiwyd ddiwethaf
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Tynnu o'r Ffefrynnau
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=Ychwanegu at y Ffefrynnau
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Er mwyn symud i'r rhestr o ymholiadau ffefryn ac ymholiadau a ddefnyddiwyd ddiwethaf, pwyswch yr allwedd Saeth i Lawr
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Nodwch mai dim ond un gwerth all gael ei gymhwyso i''r canlynol\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Dydy''r ap penodol hwn ddim yn gallu delio \u00E2 hidlo ar {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Dim ond un amod all gael ei gymhwyso i {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Dydy''r ap penodol hwn ddim yn gallu delio \u00E2 hidlo ar {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=Bysellau Hwylus
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Dod o hyd i fysellau hwylus
|
|
39
39
|
C_SHORTCUT_NODATA=Ffocyswch ar ran o'r sgrin i weld bysellau hwylus
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Bawd i fyny am y hidlydd syml
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Bawd i lawr am y hidlydd syml
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Adborth wedi'i anfon
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Golygu
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Cadw
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Canslo
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Luk
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=Ingen senest brugte foresp\u00F8rgsler
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Fjern fra foretrukne
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=F\u00F8j til foretrukne
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Tryk p\u00E5 Pil ned for at flytte til listen over foretrukne foresp\u00F8rgsler og sidst brugte foresp\u00F8rgsler
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Kun en enkelt v\u00E6rdi kan anvendes p\u00E5 f\u00F8lgende\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Denne specifikke app underst\u00F8tter ikke filtrering for {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Kun \u00E9n enkelt betingelse kan anvendes p\u00E5 {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Denne specifikke app underst\u00F8tter ikke filtrering for {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=Tastaturgenveje
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Find en tastaturgenvej
|
|
39
39
|
C_SHORTCUT_NODATA=Fokuser p\u00E5 en del af sk\u00E6rmen for at se tastaturgenvejene
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Tommelfinger op til den nemme filtrering
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Tommelfinger ned til den nemme filtrering
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Feedback sendt
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Rediger
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Gem
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Annuller
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=Schlie\u00DFen
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=Kein zuletzt verwendeten Anfragen
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=Aus Favoriten entfernen
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=Zu Favoriten hinzuf\u00FCgen
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=Um zu der Liste der Favoriten und zuletzt verwendeten Anfragen zu gelangen, dr\u00FCcken Sie die Taste "Pfeil nach unten".
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=Es kann nur ein Einzelwert auf Folgendes angewandt werden\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=Diese App unterst\u00FCtzt das Filtern nach {0} nicht.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=Only one single condition can be applied to {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=Diese App unterst\u00FCtzt das Filtern nach {0} nicht.
|
|
37
37
|
C_SHORTCUT_TITLE=Tastaturk\u00FCrzel
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=Tastaturk\u00FCrzel suchen
|
|
39
39
|
C_SHORTCUT_NODATA=Setzen Sie den Fokus auf eine Stelle auf dem Bildschirm, um die Tastaturk\u00FCrzel anzuzeigen.
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=Daumen hoch f\u00FCr Einfachen Filter
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=Daumen runter f\u00FCr Einfachen Filter
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=Feedback wurde gesendet
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=Bearbeiten
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=Sichern
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=Abbrechen
|
|
@@ -29,14 +29,20 @@ M_EASY_FILTER_POPOVER_CLOSE=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF
|
|
|
29
29
|
M_EASY_FILTER_POPOVER_EMPTY_LAST_USED_TITLE=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B1 \u03B5\u03C1\u03C9\u03C4\u03AE\u03BC\u03B1\u03C4\u03B1
|
|
30
30
|
M_EASY_FILTER_FILLED_STAR=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C0\u03CC \u0391\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1
|
|
31
31
|
M_EASY_FILTER_EMPTY_START=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C4\u03B1 \u0391\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1
|
|
32
|
-
|
|
32
|
+
T_EASY_FILTER_INPUT_TEXT_LINK_POPOVER_ARIA=\u0393\u03B9\u03B1 \u03BD\u03B1 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03B7\u03B8\u03B5\u03AF\u03C4\u03B5 \u03C3\u03C4\u03B7\u03BD \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BC\u03B5 \u03C4\u03B1 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1 \u03B5\u03C1\u03C9\u03C4\u03AE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B1 \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03C4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u039A\u03AC\u03C4\u03C9 \u0392\u03AD\u03BB\u03BF\u03C2
|
|
33
33
|
M_EASY_FILTER_SINGLE_VALUE_MESSAGE=\u039C\u03CC\u03BD\u03BF \u03BC\u03AF\u03B1 \u03BC\u03B5\u03BC\u03BF\u03BD\u03C9\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B9\u03BC\u03AE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03C3\u03C4\u03B5\u03AF \u03C3\u03C4\u03B1 \u03B5\u03BE\u03AE\u03C2\: {0}
|
|
34
|
-
M_EASY_FILTER_NON_FILTERABLE=\
|
|
35
|
-
M_EASY_FILTER_SINGLE_RANGE=\
|
|
36
|
-
M_EASY_FILTER_HIDDEN_FILTER=\
|
|
34
|
+
M_EASY_FILTER_NON_FILTERABLE=\u0391\u03C5\u03C4\u03AE \u03B7 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C3\u03B5 {0}.
|
|
35
|
+
M_EASY_FILTER_SINGLE_RANGE=\u039C\u03CC\u03BD\u03BF \u03BC\u03AF\u03B1 \u03C3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B7 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03C3\u03C4\u03B5\u03AF \u03C3\u03B5 {0}.
|
|
36
|
+
M_EASY_FILTER_HIDDEN_FILTER=\u0391\u03C5\u03C4\u03AE \u03B7 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C3\u03B5 {0}.
|
|
37
37
|
C_SHORTCUT_TITLE=\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03A0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5
|
|
38
38
|
C_SHORTCUT_PLACEHOLDER=\u0392\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BC\u03AF\u03B1 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC.\u03C0\u03BB\u03B7\u03BA\u03C4\u03C1.
|
|
39
39
|
C_SHORTCUT_NODATA=\u0395\u03C3\u03C4\u03B9\u03AC\u03C3\u03C4\u03B5 \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03BC\u03AD\u03C1\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5
|
|
40
|
+
|
|
41
|
+
C_EASY_FILTER_THUMBS_UP=\u039C\u03BF\u03C5 \u03B1\u03C1\u03AD\u03C3\u03B5\u03B9 \u03C4\u03BF \u03B5\u03CD\u03BA\u03BF\u03BB\u03BF \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1
|
|
42
|
+
|
|
43
|
+
C_EASY_FILTER_THUMBS_DOWN=\u0394\u03B5\u03BD \u03BC\u03BF\u03C5 \u03B1\u03C1\u03AD\u03C3\u03B5\u03B9 \u03C4\u03BF \u03B5\u03CD\u03BA\u03BF\u03BB\u03BF \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1
|
|
44
|
+
|
|
45
|
+
C_EASY_FILTER_FEEDBACK_SENT=\u03A3\u03C7\u03CC\u03BB\u03B9\u03BF \u03B5\u03C3\u03C4\u03AC\u03BB\u03B7
|
|
40
46
|
M_INLINE_EDIT_TOOLTIP_EDIT=E\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1
|
|
41
47
|
M_INLINE_EDIT_TOOLTIP_SAVE=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7
|
|
42
48
|
M_INLINE_EDIT_TOOLTIP_CANCEL=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7
|