uview-plus 3.4.107 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +6 -0
- package/components/u-barcode/u-barcode.vue +2 -1
- package/components/u-calendar/calendar.js +9 -7
- package/components/u-calendar/header.vue +1 -1
- package/components/u-calendar/month.vue +10 -2
- package/components/u-calendar/props.js +4 -0
- package/components/u-calendar/u-calendar.vue +6 -3
- package/components/u-checkbox/u-checkbox.vue +2 -2
- package/components/u-checkbox-group/u-checkbox-group.vue +1 -1
- package/components/u-city-locate/u-city-locate.vue +5 -3
- package/components/u-code/code.js +5 -5
- package/components/u-copy/u-copy.vue +7 -5
- package/components/u-cropper/u-cropper.vue +23 -8
- package/components/u-datetime-picker/datetimePicker.js +4 -3
- package/components/u-empty/u-empty.vue +16 -15
- package/components/u-keyboard/keyboard.js +3 -2
- package/components/u-link/link.js +2 -1
- package/components/u-loading-page/loadingPage.js +2 -1
- package/components/u-loadmore/loadmore.js +4 -3
- package/components/u-modal/modal.js +4 -3
- package/components/u-no-network/noNetwork.js +2 -2
- package/components/u-no-network/u-no-network.vue +7 -5
- package/components/u-pagination/u-pagination.vue +3 -1
- package/components/u-picker/picker.js +4 -3
- package/components/u-pull-refresh/u-pull-refresh.vue +8 -6
- package/components/u-read-more/readMore.js +3 -2
- package/components/u-search/search.js +3 -2
- package/components/u-section/section.js +2 -1
- package/components/u-signature/u-signature.vue +3 -2
- package/components/u-toolbar/toolbar.js +3 -2
- package/components/u-tooltip/u-tooltip.vue +1 -2
- package/components/u-upload/u-upload.vue +7 -5
- package/index.js +5 -2
- package/libs/i18n/index.js +50 -0
- package/libs/i18n/locales/de.json +80 -0
- package/libs/i18n/locales/en.json +80 -0
- package/libs/i18n/locales/es.json +80 -0
- package/libs/i18n/locales/fr.json +80 -0
- package/libs/i18n/locales/ja.json +80 -0
- package/libs/i18n/locales/ko.json +80 -0
- package/libs/i18n/locales/ru.json +80 -0
- package/libs/i18n/locales/zh-Hans.json +80 -0
- package/libs/i18n/locales/zh-Hant.json +80 -0
- package/package.json +5 -5
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
<!-- 只有APP平台,才能跳转设置页,因为需要调用plus环境 -->
|
|
23
23
|
<!-- #ifdef APP-PLUS -->
|
|
24
24
|
<view class="u-no-network__app">
|
|
25
|
-
<text class="u-no-network__app__setting"
|
|
25
|
+
<text class="u-no-network__app__setting">{{ t("up.noNetwork.pleaseCheck") }}</text>
|
|
26
26
|
<text
|
|
27
27
|
class="u-no-network__app__to-setting"
|
|
28
28
|
@tap="openSettings"
|
|
29
|
-
|
|
29
|
+
>{{ t("up.common.settings") }}</text>
|
|
30
30
|
</view>
|
|
31
31
|
<!-- #endif -->
|
|
32
32
|
<view class="u-no-network__retry">
|
|
33
33
|
<u-button
|
|
34
34
|
size="mini"
|
|
35
|
-
text="
|
|
35
|
+
:text="t('up.common.retry')"
|
|
36
36
|
type="primary"
|
|
37
37
|
plain
|
|
38
38
|
@click="retry"
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
import { mpMixin } from '../../libs/mixin/mpMixin';
|
|
48
48
|
import { mixin } from '../../libs/mixin/mixin';
|
|
49
49
|
import { toast, getDeviceInfo } from '../../libs/function/index';
|
|
50
|
+
import { t } from '../../libs/i18n'
|
|
50
51
|
/**
|
|
51
52
|
* noNetwork 无网络提示
|
|
52
53
|
* @description 该组件无需任何配置,引入即可,内部自动处理所有功能和事件。
|
|
@@ -87,6 +88,7 @@
|
|
|
87
88
|
},
|
|
88
89
|
emits: ["disconnected", "connected"],
|
|
89
90
|
methods: {
|
|
91
|
+
t,
|
|
90
92
|
retry() {
|
|
91
93
|
// 重新检查网络
|
|
92
94
|
uni.getNetworkType({
|
|
@@ -94,10 +96,10 @@
|
|
|
94
96
|
this.networkType = res.networkType
|
|
95
97
|
this.emitEvent(this.networkType)
|
|
96
98
|
if (res.networkType == 'none') {
|
|
97
|
-
toast(
|
|
99
|
+
toast(t("up.noNetwork.disconnect"))
|
|
98
100
|
this.isConnected = false
|
|
99
101
|
} else {
|
|
100
|
-
toast(
|
|
102
|
+
toast(t("up.noNetwork.connect"))
|
|
101
103
|
this.isConnected = true
|
|
102
104
|
}
|
|
103
105
|
}
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
@click="next"
|
|
57
57
|
>
|
|
58
58
|
<template v-if="nextText">
|
|
59
|
-
|
|
59
|
+
{{ nextText }}
|
|
60
60
|
</template>
|
|
61
61
|
<up-icon v-else name="arrow-right"></up-icon>
|
|
62
62
|
</view>
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
</template>
|
|
78
78
|
|
|
79
79
|
<script>
|
|
80
|
+
import { t } from '../../libs/i18n'
|
|
80
81
|
export default {
|
|
81
82
|
name: 'u-pagination',
|
|
82
83
|
props: {
|
|
@@ -194,6 +195,7 @@ export default {
|
|
|
194
195
|
}
|
|
195
196
|
},
|
|
196
197
|
methods: {
|
|
198
|
+
t,
|
|
197
199
|
handleSizeChange(e) {
|
|
198
200
|
const selected = e.detail.value;
|
|
199
201
|
const size = this.pageSizes[selected]?.value || this.pageSizes[0].value;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* @lastTime : 2021-08-20 17:18:20
|
|
8
8
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/picker.js
|
|
9
9
|
*/
|
|
10
|
+
import { t } from '../../libs/i18n'
|
|
10
11
|
export default {
|
|
11
12
|
// picker
|
|
12
13
|
picker: {
|
|
@@ -17,8 +18,8 @@ export default {
|
|
|
17
18
|
columns: [],
|
|
18
19
|
loading: false,
|
|
19
20
|
itemHeight: 44,
|
|
20
|
-
cancelText:
|
|
21
|
-
confirmText:
|
|
21
|
+
cancelText: t("up.common.cancel"),
|
|
22
|
+
confirmText: t("up.common.confirm"),
|
|
22
23
|
cancelColor: '#909193',
|
|
23
24
|
confirmColor: '',
|
|
24
25
|
visibleItemCount: 5,
|
|
@@ -30,7 +31,7 @@ export default {
|
|
|
30
31
|
zIndex: 10076,
|
|
31
32
|
disabled: false,
|
|
32
33
|
disabledColor: '',
|
|
33
|
-
placeholder:
|
|
34
|
+
placeholder: t("up.common.pleaseChoose"),
|
|
34
35
|
inputProps: {},
|
|
35
36
|
bgColor: '',
|
|
36
37
|
round: 0,
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<view class="refresh-indicator">
|
|
25
25
|
<up-icon name="arrow-downward" size="26px"></up-icon>
|
|
26
26
|
</view>
|
|
27
|
-
<text class="refresh-text"
|
|
27
|
+
<text class="refresh-text">{{ t("up.pullRefresh.pullRefresh") }}</text>
|
|
28
28
|
</view>
|
|
29
29
|
</slot>
|
|
30
30
|
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<view class="refresh-indicator">
|
|
40
40
|
<up-icon name="arrow-upward" size="26px"></up-icon>
|
|
41
41
|
</view>
|
|
42
|
-
<text class="refresh-text"
|
|
42
|
+
<text class="refresh-text">{{ t("up.pullRefresh.release") }}</text>
|
|
43
43
|
</view>
|
|
44
44
|
</slot>
|
|
45
45
|
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<view class="refresh-indicator">
|
|
53
53
|
<view class="spinner"></view>
|
|
54
54
|
</view>
|
|
55
|
-
<text class="refresh-text"
|
|
55
|
+
<text class="refresh-text">{{ t("up.pullRefresh.refreshing") }}...</text>
|
|
56
56
|
</view>
|
|
57
57
|
</slot>
|
|
58
58
|
</view>
|
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
</template>
|
|
96
96
|
|
|
97
97
|
<script>
|
|
98
|
+
import { t } from '../../libs/i18n'
|
|
98
99
|
export default {
|
|
99
100
|
name: 'u-pull-refresh',
|
|
100
101
|
props: {
|
|
@@ -128,9 +129,9 @@ export default {
|
|
|
128
129
|
type: Object,
|
|
129
130
|
default: () => ({
|
|
130
131
|
status: 'loadmore',
|
|
131
|
-
loadmoreText: '加载更多',
|
|
132
|
-
loadingText: '正在加载...',
|
|
133
|
-
nomoreText: '没有更多了'
|
|
132
|
+
// loadmoreText: '加载更多',
|
|
133
|
+
// loadingText: '正在加载...',
|
|
134
|
+
// nomoreText: '没有更多了'
|
|
134
135
|
})
|
|
135
136
|
},
|
|
136
137
|
// 是否使用 scroll-view 包装内容
|
|
@@ -179,6 +180,7 @@ export default {
|
|
|
179
180
|
}
|
|
180
181
|
},
|
|
181
182
|
methods: {
|
|
183
|
+
t,
|
|
182
184
|
// 触摸开始
|
|
183
185
|
onTouchStart(e) {
|
|
184
186
|
if (this.isRefreshing) return
|
|
@@ -7,13 +7,14 @@
|
|
|
7
7
|
* @lastTime : 2021-08-20 17:18:41
|
|
8
8
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/readMore.js
|
|
9
9
|
*/
|
|
10
|
+
import { t } from '../../libs/i18n'
|
|
10
11
|
export default {
|
|
11
12
|
// readMore
|
|
12
13
|
readMore: {
|
|
13
14
|
showHeight: 400,
|
|
14
15
|
toggle: false,
|
|
15
|
-
closeText:
|
|
16
|
-
openText:
|
|
16
|
+
closeText: t("up.readMore.expand"),
|
|
17
|
+
openText: t("up.readMore.fold"),
|
|
17
18
|
color: '#2979ff',
|
|
18
19
|
fontSize: 14,
|
|
19
20
|
textIndent: '2em',
|
|
@@ -7,17 +7,18 @@
|
|
|
7
7
|
* @lastTime : 2021-08-20 17:19:45
|
|
8
8
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/search.js
|
|
9
9
|
*/
|
|
10
|
+
import { t } from '../../libs/i18n'
|
|
10
11
|
export default {
|
|
11
12
|
// search
|
|
12
13
|
search: {
|
|
13
14
|
shape: 'round',
|
|
14
15
|
bgColor: '#f2f2f2',
|
|
15
|
-
placeholder:
|
|
16
|
+
placeholder: t("up.search.placeholder"),
|
|
16
17
|
clearabled: true,
|
|
17
18
|
focus: false,
|
|
18
19
|
showAction: true,
|
|
19
20
|
actionStyle: {},
|
|
20
|
-
actionText:
|
|
21
|
+
actionText: t("up.common.search"),
|
|
21
22
|
inputAlign: 'left',
|
|
22
23
|
inputStyle: {},
|
|
23
24
|
disabled: false,
|
|
@@ -7,11 +7,12 @@
|
|
|
7
7
|
* @lastTime : 2021-08-20 17:07:33
|
|
8
8
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/section.js
|
|
9
9
|
*/
|
|
10
|
+
import { t } from '../../libs/i18n'
|
|
10
11
|
export default {
|
|
11
12
|
// u-section组件
|
|
12
13
|
section: {
|
|
13
14
|
title: '',
|
|
14
|
-
subTitle:
|
|
15
|
+
subTitle: t("up.common.more"),
|
|
15
16
|
right: true,
|
|
16
17
|
fontSize: 15,
|
|
17
18
|
bold: true,
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<!-- 笔画设置 -->
|
|
39
39
|
<view v-if="showBrushSettings" class="u-signature__brush-settings">
|
|
40
40
|
<view class="u-signature__progress">
|
|
41
|
-
<text class="u-signature__progress-label"
|
|
41
|
+
<text class="u-signature__progress-label">{{ t("up.signature.penSize") }}:</text>
|
|
42
42
|
<up-slider
|
|
43
43
|
v-model="lineWidth"
|
|
44
44
|
:min="1"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
<!-- 颜色设置 -->
|
|
54
54
|
<view v-if="showColorSettings" class="u-signature__color-settings">
|
|
55
55
|
<view class="u-signature__color-picker">
|
|
56
|
-
<text class="u-signature__color-label"
|
|
56
|
+
<text class="u-signature__color-label">{{ t("up.signature.penColor") }}:</text>
|
|
57
57
|
<view class="u-signature__colors">
|
|
58
58
|
<view
|
|
59
59
|
v-for="(color, index) in presetColors"
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
</template>
|
|
72
72
|
|
|
73
73
|
<script>
|
|
74
|
+
import { t } from '../../libs/i18n'
|
|
74
75
|
export default {
|
|
75
76
|
name: 'u-signature',
|
|
76
77
|
props: {
|
|
@@ -7,12 +7,13 @@
|
|
|
7
7
|
* @lastTime : 2021-08-20 17:24:55
|
|
8
8
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/toolbar.js
|
|
9
9
|
*/
|
|
10
|
+
import { t } from '../../libs/i18n'
|
|
10
11
|
export default {
|
|
11
12
|
// toolbar 组件
|
|
12
13
|
toolbar: {
|
|
13
14
|
show: true,
|
|
14
|
-
cancelText: '
|
|
15
|
-
confirmText: '
|
|
15
|
+
cancelText: t('up.common.cancel'),
|
|
16
|
+
confirmText: t('up.common.confirm'),
|
|
16
17
|
cancelColor: '#909193',
|
|
17
18
|
confirmColor: '',
|
|
18
19
|
title: ''
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
:name="item.isVideo || (item.type && item.type === 'video') ? 'movie' : 'folder'"
|
|
66
66
|
></up-icon>
|
|
67
67
|
<text class="u-upload__wrap__preview__other__text">
|
|
68
|
-
{{item.isVideo || (item.type && item.type === 'video') ? item.name ||
|
|
68
|
+
{{item.isVideo || (item.type && item.type === 'video') ? item.name || t("up.common.video") : item.name || t("up.common.file")}}
|
|
69
69
|
</text>
|
|
70
70
|
</view>
|
|
71
71
|
<view
|
|
@@ -194,6 +194,7 @@
|
|
|
194
194
|
import { mixin } from '../../libs/mixin/mixin';
|
|
195
195
|
import { addStyle, addUnit, toast } from '../../libs/function/index';
|
|
196
196
|
import test from '../../libs/function/test';
|
|
197
|
+
import { t } from '../../libs/i18n'
|
|
197
198
|
/**
|
|
198
199
|
* upload 上传
|
|
199
200
|
* @description 该组件用于上传图片场景
|
|
@@ -270,6 +271,7 @@
|
|
|
270
271
|
emits: ['error', 'beforeRead', 'oversize', 'afterRead', 'delete', 'clickPreview', 'update:fileList', 'afterAutoUpload'],
|
|
271
272
|
// #endif
|
|
272
273
|
methods: {
|
|
274
|
+
t,
|
|
273
275
|
addUnit,
|
|
274
276
|
addStyle,
|
|
275
277
|
videoErrorCallback() {},
|
|
@@ -422,7 +424,7 @@
|
|
|
422
424
|
file.size > maxSize;
|
|
423
425
|
if (oversize) {
|
|
424
426
|
uni.showToast({
|
|
425
|
-
title:
|
|
427
|
+
title: t("up.upload.sizeExceed")
|
|
426
428
|
})
|
|
427
429
|
this.$emit('oversize', Object.assign({
|
|
428
430
|
file
|
|
@@ -438,7 +440,7 @@
|
|
|
438
440
|
this.fileList.push({
|
|
439
441
|
...item,
|
|
440
442
|
status: 'uploading',
|
|
441
|
-
message:
|
|
443
|
+
message: t("up.upload.uploading"),
|
|
442
444
|
progress: 0
|
|
443
445
|
});
|
|
444
446
|
});
|
|
@@ -639,7 +641,7 @@
|
|
|
639
641
|
urls: urls,
|
|
640
642
|
current: current,
|
|
641
643
|
fail() {
|
|
642
|
-
toast(
|
|
644
|
+
toast(t("up.upload.previewImageFail"))
|
|
643
645
|
},
|
|
644
646
|
});
|
|
645
647
|
},
|
|
@@ -673,7 +675,7 @@
|
|
|
673
675
|
sources: sources,
|
|
674
676
|
current: current,
|
|
675
677
|
fail() {
|
|
676
|
-
toast(
|
|
678
|
+
toast(t("up.upload.previewVideoFail"))
|
|
677
679
|
},
|
|
678
680
|
});
|
|
679
681
|
// #endif
|
package/index.js
CHANGED
|
@@ -41,9 +41,12 @@ import http from './libs/function/http.js'
|
|
|
41
41
|
// fontUtil
|
|
42
42
|
import fontUtil from './components/u-icon/util.js';
|
|
43
43
|
|
|
44
|
+
// i18n
|
|
45
|
+
import i18n, { t } from './libs/i18n/index.js'
|
|
46
|
+
|
|
44
47
|
// 导出
|
|
45
48
|
let themeType = ['primary', 'success', 'error', 'warning', 'info'];
|
|
46
|
-
export { route, http, debounce, throttle, calc, digit, platform, themeType, mixin, mpMixin, props, color, test, zIndex, fontUtil }
|
|
49
|
+
export { route, http, debounce, throttle, calc, digit, platform, themeType, mixin, mpMixin, props, color, test, zIndex, fontUtil, i18n ,t}
|
|
47
50
|
export * from './libs/function/index.js'
|
|
48
51
|
export * from './libs/function/colorGradient.js'
|
|
49
52
|
|
|
@@ -79,7 +82,7 @@ const $u = {
|
|
|
79
82
|
calc,
|
|
80
83
|
mixin,
|
|
81
84
|
mpMixin,
|
|
82
|
-
props,
|
|
85
|
+
// props,
|
|
83
86
|
...index,
|
|
84
87
|
color,
|
|
85
88
|
platform
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import zhHans from './locales/zh-Hans.json'
|
|
2
|
+
import zhHant from './locales/zh-Hant.json'
|
|
3
|
+
import en from './locales/en.json'
|
|
4
|
+
import es from './locales/es.json'
|
|
5
|
+
import fr from './locales/fr.json'
|
|
6
|
+
import de from './locales/de.json'
|
|
7
|
+
import ko from './locales/ko.json'
|
|
8
|
+
import ja from './locales/ja.json'
|
|
9
|
+
import ru from './locales/ru.json'
|
|
10
|
+
|
|
11
|
+
let settings = {
|
|
12
|
+
lang: uni.getLocale(),
|
|
13
|
+
locales: {
|
|
14
|
+
en,
|
|
15
|
+
es,
|
|
16
|
+
fr,
|
|
17
|
+
de,
|
|
18
|
+
ko,
|
|
19
|
+
ja,
|
|
20
|
+
ru,
|
|
21
|
+
'zh-Hant': zhHant,
|
|
22
|
+
'zh-Hans': zhHans
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
uni.onLocaleChange((locale) => {
|
|
27
|
+
settings.lang = locale;
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 多语言方法
|
|
32
|
+
*/
|
|
33
|
+
export function t(value, params = {}) {
|
|
34
|
+
console.log(settings.locales[settings.lang])
|
|
35
|
+
if (value) {
|
|
36
|
+
let result = settings.locales[settings.lang][value] || value;
|
|
37
|
+
// 替换{xxx}格式的变量
|
|
38
|
+
Object.keys(params).forEach(key => {
|
|
39
|
+
const reg = new RegExp(`{${key}}`, 'g');
|
|
40
|
+
result = result.replace(reg, params[key]);
|
|
41
|
+
});
|
|
42
|
+
return result;
|
|
43
|
+
} else {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export default {
|
|
49
|
+
settings: settings
|
|
50
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"up.common.cancel": "Abbrechen",
|
|
3
|
+
"up.common.confirm": "Bestätigen",
|
|
4
|
+
"up.common.start": "Start",
|
|
5
|
+
"up.common.end": "Ende",
|
|
6
|
+
"up.common.stop": "Stopp",
|
|
7
|
+
"up.common.copy": "Kopieren",
|
|
8
|
+
"up.common.none": "Keine",
|
|
9
|
+
"up.common.tip": "Hinweis",
|
|
10
|
+
"up.common.success": "Erfolg",
|
|
11
|
+
"up.common.fail": "Fehlgeschlagen",
|
|
12
|
+
"up.common.close": "Schließen",
|
|
13
|
+
"up.common.preview": "Vorschau",
|
|
14
|
+
"up.common.re-select": "Erneut auswählen",
|
|
15
|
+
"up.common.rotate": "Drehen",
|
|
16
|
+
"up.common.pleaseChoose": "Bitte wählen",
|
|
17
|
+
"up.common.loading": "Laden",
|
|
18
|
+
"up.common.loading2": "Wird geladen",
|
|
19
|
+
"up.common.inOperation": "In Bearbeitung",
|
|
20
|
+
"up.common.settings": "Einstellungen",
|
|
21
|
+
"up.common.retry": "Wiederholen",
|
|
22
|
+
"up.common.search": "Suchen",
|
|
23
|
+
"up.common.more": "Mehr",
|
|
24
|
+
"up.common.video": "Video",
|
|
25
|
+
"up.common.file": "Datei",
|
|
26
|
+
"up.week.one": "Mo",
|
|
27
|
+
"up.week.two": "Di",
|
|
28
|
+
"up.week.three": "Mi",
|
|
29
|
+
"up.week.four": "Do",
|
|
30
|
+
"up.week.five": "Fr",
|
|
31
|
+
"up.week.six": "Sa",
|
|
32
|
+
"up.week.seven": "So",
|
|
33
|
+
"up.barcode.error": "Barcode-Generierung fehlgeschlagen",
|
|
34
|
+
"up.calendar.chooseDates": "Datumsauswahl",
|
|
35
|
+
"up.calendar.disabled": "Dieses Datum ist deaktiviert",
|
|
36
|
+
"up.calendar.daysExceed": "Die Anzahl der ausgewählten Tage darf {days} Tage nicht überschreiten",
|
|
37
|
+
"up.cityLocate.locateCity": "Stadt lokalisieren",
|
|
38
|
+
"up.cityLocate.fail": "Lokalisierung fehlgeschlagen, bitte klicken Sie zum Wiederholen.",
|
|
39
|
+
"up.cityLocate.locating": "Lokalisierung läuft",
|
|
40
|
+
"up.code.send": "Bestätigungscode erhalten",
|
|
41
|
+
"up.code.resendAfter": "Erneut senden in X Sekunden",
|
|
42
|
+
"up.code.resend": "Erneut senden",
|
|
43
|
+
"up.cropper.emptyWidhtOrHeight": "Breite oder Höhe des Zuschneidebereichs nicht festgelegt",
|
|
44
|
+
"up.empty.car": "Warenkorb ist leer",
|
|
45
|
+
"up.empty.page": "Seite existiert nicht",
|
|
46
|
+
"up.empty.search": "Keine Suchergebnisse",
|
|
47
|
+
"up.empty.address": "Keine Lieferadresse",
|
|
48
|
+
"up.empty.wifi": "Kein WLAN",
|
|
49
|
+
"up.empty.order": "Bestellungen sind leer",
|
|
50
|
+
"up.empty.coupon": "Keine Gutscheine",
|
|
51
|
+
"up.empty.favor": "Keine Favoriten",
|
|
52
|
+
"up.empty.permission": "Keine Berechtigung",
|
|
53
|
+
"up.empty.history": "Kein Verlauf",
|
|
54
|
+
"up.empty.news": "Keine Nachrichtenliste",
|
|
55
|
+
"up.empty.message": "Nachrichtenliste ist leer",
|
|
56
|
+
"up.empty.list": "Liste ist leer",
|
|
57
|
+
"up.empty.data": "Daten sind leer",
|
|
58
|
+
"up.empty.comment": "Keine Kommentare",
|
|
59
|
+
"up.link.copyed": "Link kopiert, bitte im Browser öffnen",
|
|
60
|
+
"up.loadmoe.loadmore": "Mehr laden",
|
|
61
|
+
"up.loadmoe.nomore": "Keine weiteren Daten",
|
|
62
|
+
"up.noNetwork.text": "Ups, Netzwerksignal verloren",
|
|
63
|
+
"up.noNetwork.pleaseCheck": "Bitte überprüfen Sie das Netzwerk oder gehen Sie zu",
|
|
64
|
+
"up.noNetwork.connect": "Netzwerk verbunden",
|
|
65
|
+
"up.noNetwork.disconnect": "Keine Netzwerkverbindung",
|
|
66
|
+
"up.pagination.previous": "Vorherige Seite",
|
|
67
|
+
"up.pagination.next": "Nächste Seite",
|
|
68
|
+
"up.pullRefresh.pull": "Zum Aktualisieren nach unten ziehen",
|
|
69
|
+
"up.pullRefresh.release": "Loslassen zum Aktualisieren",
|
|
70
|
+
"up.pullRefresh.refreshing": "Aktualisierung läuft",
|
|
71
|
+
"up.readMore.expand": "Erweitern zum vollständigen Lesen",
|
|
72
|
+
"up.readMore.fold": "Einklappen",
|
|
73
|
+
"up.search.placeholder": "Bitte Schlüsselwort eingeben",
|
|
74
|
+
"up.signature.penSize": "Strichstärke",
|
|
75
|
+
"up.signature.penColor": "Strichfarbe",
|
|
76
|
+
"up.upload.sizeExceed": "Größenbegrenzung überschritten",
|
|
77
|
+
"up.upload.uploading": "Upload läuft",
|
|
78
|
+
"up.upload.previewImageFail": "Bildvorschau fehlgeschlagen",
|
|
79
|
+
"up.upload.previewVideoFail": "Videovorschau fehlgeschlagen"
|
|
80
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"up.common.cancel": "Cancel",
|
|
3
|
+
"up.common.confirm": "Confirm",
|
|
4
|
+
"up.common.start": "Start",
|
|
5
|
+
"up.common.end": "End",
|
|
6
|
+
"up.common.stop": "Stop",
|
|
7
|
+
"up.common.copy": "Copy",
|
|
8
|
+
"up.common.none": "None",
|
|
9
|
+
"up.common.tip": "Tip",
|
|
10
|
+
"up.common.success": "Success",
|
|
11
|
+
"up.common.fail": "Fail",
|
|
12
|
+
"up.common.close": "Close",
|
|
13
|
+
"up.common.preview": "Preview",
|
|
14
|
+
"up.common.re-select": "Re-select",
|
|
15
|
+
"up.common.rotate": "Rotate",
|
|
16
|
+
"up.common.pleaseChoose": "Please choose",
|
|
17
|
+
"up.common.loading": "Loading",
|
|
18
|
+
"up.common.loading2": "Loading",
|
|
19
|
+
"up.common.inOperation": "In operation",
|
|
20
|
+
"up.common.settings": "Settings",
|
|
21
|
+
"up.common.retry": "Retry",
|
|
22
|
+
"up.common.search": "Search",
|
|
23
|
+
"up.common.more": "More",
|
|
24
|
+
"up.common.video": "Video",
|
|
25
|
+
"up.common.file": "File",
|
|
26
|
+
"up.week.one": "Mon",
|
|
27
|
+
"up.week.two": "Tue",
|
|
28
|
+
"up.week.three": "Wed",
|
|
29
|
+
"up.week.four": "Thu",
|
|
30
|
+
"up.week.five": "Fri",
|
|
31
|
+
"up.week.six": "Sat",
|
|
32
|
+
"up.week.seven": "Sun",
|
|
33
|
+
"up.barcode.error": "Failed to generate barcode",
|
|
34
|
+
"up.calendar.chooseDates": "Date selection",
|
|
35
|
+
"up.calendar.disabled": "This date is disabled",
|
|
36
|
+
"up.calendar.daysExceed": "The number of selected days cannot exceed {days} days",
|
|
37
|
+
"up.cityLocate.locateCity": "Locate city",
|
|
38
|
+
"up.cityLocate.fail": "Location failed, please click to retry.",
|
|
39
|
+
"up.cityLocate.locating": "Locating",
|
|
40
|
+
"up.code.send": "Get verification code",
|
|
41
|
+
"up.code.resendAfter": "Resend after X seconds",
|
|
42
|
+
"up.code.resend": "Resend",
|
|
43
|
+
"up.cropper.emptyWidhtOrHeight": "The width or height of the cropping box is not set",
|
|
44
|
+
"up.empty.car": "Shopping cart is empty",
|
|
45
|
+
"up.empty.page": "Page not found",
|
|
46
|
+
"up.empty.search": "No search results",
|
|
47
|
+
"up.empty.address": "No shipping address",
|
|
48
|
+
"up.empty.wifi": "No WiFi",
|
|
49
|
+
"up.empty.order": "Order is empty",
|
|
50
|
+
"up.empty.coupon": "No coupons",
|
|
51
|
+
"up.empty.favor": "No favorites",
|
|
52
|
+
"up.empty.permission": "No permission",
|
|
53
|
+
"up.empty.history": "No history",
|
|
54
|
+
"up.empty.news": "No news list",
|
|
55
|
+
"up.empty.message": "Message list is empty",
|
|
56
|
+
"up.empty.list": "List is empty",
|
|
57
|
+
"up.empty.data": "Data is empty",
|
|
58
|
+
"up.empty.comment": "No comments",
|
|
59
|
+
"up.link.copyed": "Link copied, please open in browser",
|
|
60
|
+
"up.loadmoe.loadmore": "Load more",
|
|
61
|
+
"up.loadmoe.nomore": "No more",
|
|
62
|
+
"up.noNetwork.text": "Oops, network signal lost",
|
|
63
|
+
"up.noNetwork.pleaseCheck": "Please check the network, or go to",
|
|
64
|
+
"up.noNetwork.connect": "Network connected",
|
|
65
|
+
"up.noNetwork.disconnect": "No network connection",
|
|
66
|
+
"up.pagination.previous": "Previous",
|
|
67
|
+
"up.pagination.next": "Next",
|
|
68
|
+
"up.pullRefresh.pull": "Pull to refresh",
|
|
69
|
+
"up.pullRefresh.release": "Release to refresh",
|
|
70
|
+
"up.pullRefresh.refreshing": "Refreshing",
|
|
71
|
+
"up.readMore.expand": "Expand to read more",
|
|
72
|
+
"up.readMore.fold": "Collapse",
|
|
73
|
+
"up.search.placeholder": "Please enter keywords",
|
|
74
|
+
"up.signature.penSize": "Stroke size",
|
|
75
|
+
"up.signature.penColor": "Stroke color",
|
|
76
|
+
"up.upload.sizeExceed": "Size limit exceeded",
|
|
77
|
+
"up.upload.uploading": "Uploading",
|
|
78
|
+
"up.upload.previewImageFail": "Failed to preview image",
|
|
79
|
+
"up.upload.previewVideoFail": "Failed to preview video"
|
|
80
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"up.common.cancel": "Cancelar",
|
|
3
|
+
"up.common.confirm": "Confirmar",
|
|
4
|
+
"up.common.start": "Iniciar",
|
|
5
|
+
"up.common.end": "Finalizar",
|
|
6
|
+
"up.common.stop": "Detener",
|
|
7
|
+
"up.common.copy": "Copiar",
|
|
8
|
+
"up.common.none": "Ninguno",
|
|
9
|
+
"up.common.tip": "Consejo",
|
|
10
|
+
"up.common.success": "Éxito",
|
|
11
|
+
"up.common.fail": "Fallido",
|
|
12
|
+
"up.common.close": "Cerrar",
|
|
13
|
+
"up.common.preview": "Vista previa",
|
|
14
|
+
"up.common.re-select": "Re seleccionar",
|
|
15
|
+
"up.common.rotate": "Rotar",
|
|
16
|
+
"up.common.pleaseChoose": "Por favor seleccione",
|
|
17
|
+
"up.common.loading": "Cargando",
|
|
18
|
+
"up.common.loading2": "Cargando",
|
|
19
|
+
"up.common.inOperation": "En operación",
|
|
20
|
+
"up.common.settings": "Configuración",
|
|
21
|
+
"up.common.retry": "Reintentar",
|
|
22
|
+
"up.common.search": "Buscar",
|
|
23
|
+
"up.common.more": "Más",
|
|
24
|
+
"up.common.video": "Vídeo",
|
|
25
|
+
"up.common.file": "Archivo",
|
|
26
|
+
"up.week.one": "Lun",
|
|
27
|
+
"up.week.two": "Mar",
|
|
28
|
+
"up.week.three": "Mié",
|
|
29
|
+
"up.week.four": "Jue",
|
|
30
|
+
"up.week.five": "Vie",
|
|
31
|
+
"up.week.six": "Sáb",
|
|
32
|
+
"up.week.seven": "Dom",
|
|
33
|
+
"up.barcode.error": "Error al generar código de barras",
|
|
34
|
+
"up.calendar.chooseDates": "Selección de fecha",
|
|
35
|
+
"up.calendar.disabled": "Esta fecha está deshabilitada",
|
|
36
|
+
"up.calendar.daysExceed": "Los días seleccionados no pueden exceder {days} días",
|
|
37
|
+
"up.cityLocate.locateCity": "Localizar ciudad",
|
|
38
|
+
"up.cityLocate.fail": "Error de localización, haga clic para reintentar.",
|
|
39
|
+
"up.cityLocate.locating": "Localizando",
|
|
40
|
+
"up.code.send": "Obtener código de verificación",
|
|
41
|
+
"up.code.resendAfter": "Reenviar en X segundos",
|
|
42
|
+
"up.code.resend": "Reenviar",
|
|
43
|
+
"up.cropper.emptyWidhtOrHeight": "El ancho o alto del recorte no está configurado",
|
|
44
|
+
"up.empty.car": "Carrito de compras vacío",
|
|
45
|
+
"up.empty.page": "Página no encontrada",
|
|
46
|
+
"up.empty.search": "Sin resultados de búsqueda",
|
|
47
|
+
"up.empty.address": "Sin dirección de envío",
|
|
48
|
+
"up.empty.wifi": "Sin WiFi",
|
|
49
|
+
"up.empty.order": "Pedido vacío",
|
|
50
|
+
"up.empty.coupon": "Sin cupones",
|
|
51
|
+
"up.empty.favor": "Sin favoritos",
|
|
52
|
+
"up.empty.permission": "Sin permisos",
|
|
53
|
+
"up.empty.history": "Sin historial",
|
|
54
|
+
"up.empty.news": "Sin noticias",
|
|
55
|
+
"up.empty.message": "Lista de mensajes vacía",
|
|
56
|
+
"up.empty.list": "Lista vacía",
|
|
57
|
+
"up.empty.data": "Datos vacíos",
|
|
58
|
+
"up.empty.comment": "Sin comentarios",
|
|
59
|
+
"up.link.copyed": "Enlace copiado, por favor abra en el navegador",
|
|
60
|
+
"up.loadmoe.loadmore": "Cargar más",
|
|
61
|
+
"up.loadmoe.nomore": "No hay más",
|
|
62
|
+
"up.noNetwork.text": "¡Ups! Se perdió la señal de red",
|
|
63
|
+
"up.noNetwork.pleaseCheck": "Por favor verifique la red, o vaya a",
|
|
64
|
+
"up.noNetwork.connect": "Red conectada",
|
|
65
|
+
"up.noNetwork.disconnect": "Sin conexión a internet",
|
|
66
|
+
"up.pagination.previous": "Página anterior",
|
|
67
|
+
"up.pagination.next": "Página siguiente",
|
|
68
|
+
"up.pullRefresh.pull": "Deslizar hacia abajo para actualizar",
|
|
69
|
+
"up.pullRefresh.release": "Soltar para actualizar",
|
|
70
|
+
"up.pullRefresh.refreshing": "Actualizando",
|
|
71
|
+
"up.readMore.expand": "Expandir para leer más",
|
|
72
|
+
"up.readMore.fold": "Contraer",
|
|
73
|
+
"up.search.placeholder": "Ingrese palabra clave",
|
|
74
|
+
"up.signature.penSize": "Tamaño del trazo",
|
|
75
|
+
"up.signature.penColor": "Color del trazo",
|
|
76
|
+
"up.upload.sizeExceed": "Excede el límite de tamaño",
|
|
77
|
+
"up.upload.uploading": "Subiendo",
|
|
78
|
+
"up.upload.previewImageFail": "Error al previsualizar imagen",
|
|
79
|
+
"up.upload.previewVideoFail": "Error al previsualizar vídeo"
|
|
80
|
+
}
|