@refinitiv-ui/phrasebook 7.0.3 → 7.0.5
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 +10 -0
- package/LICENSE +1 -1
- package/lib/locale/de/color-dialog.js +0 -1
- package/lib/locale/de/color-picker.js +0 -1
- package/lib/locale/de/pagination.js +0 -1
- package/lib/locale/de/password-field.d.ts +2 -1
- package/lib/locale/de/password-field.js +2 -1
- package/lib/locale/de/tree-select.js +0 -1
- package/lib/locale/en/color-dialog.js +0 -1
- package/lib/locale/en/color-picker.js +0 -1
- package/lib/locale/en/pagination.js +0 -1
- package/lib/locale/en/password-field.d.ts +2 -1
- package/lib/locale/en/password-field.js +2 -1
- package/lib/locale/en/tree-select.js +0 -1
- package/lib/locale/ja/color-dialog.js +0 -1
- package/lib/locale/ja/color-picker.js +0 -1
- package/lib/locale/ja/pagination.js +0 -1
- package/lib/locale/ja/password-field.d.ts +2 -1
- package/lib/locale/ja/password-field.js +3 -2
- package/lib/locale/ja/tree-select.js +0 -1
- package/lib/locale/zh/color-dialog.js +0 -1
- package/lib/locale/zh/color-picker.js +0 -1
- package/lib/locale/zh/pagination.js +0 -1
- package/lib/locale/zh/password-field.d.ts +2 -1
- package/lib/locale/zh/password-field.js +2 -1
- package/lib/locale/zh/tree-select.js +0 -1
- package/lib/locale/zh-hant/color-dialog.js +0 -1
- package/lib/locale/zh-hant/color-picker.js +0 -1
- package/lib/locale/zh-hant/pagination.js +0 -1
- package/lib/locale/zh-hant/password-field.d.ts +2 -1
- package/lib/locale/zh-hant/password-field.js +2 -1
- package/lib/locale/zh-hant/tree-select.js +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.0.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.4...@refinitiv-ui/phrasebook@7.0.5) (2023-10-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **password-field, phrasebook:** improve show password announcement ([#962](https://github.com/Refinitiv/refinitiv-ui/issues/962)) ([4b6dcdc](https://github.com/Refinitiv/refinitiv-ui/commit/4b6dcdc23b4cc0f9dd7fe9e2df5314960ad65b07))
|
|
11
|
+
|
|
12
|
+
## [7.0.4](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.3...@refinitiv-ui/phrasebook@7.0.4) (2023-09-18)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @refinitiv-ui/phrasebook
|
|
15
|
+
|
|
6
16
|
## [7.0.3](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.2...@refinitiv-ui/phrasebook@7.0.3) (2023-08-21)
|
|
7
17
|
|
|
8
18
|
### Bug Fixes
|
package/LICENSE
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Phrasebook } from '../../translation.js';
|
|
2
2
|
const translations = {
|
|
3
3
|
SHOW_PASSWORD: 'Kennwort anzeigen',
|
|
4
|
-
|
|
4
|
+
SHOW_PASSWORD_ON: 'Passwort anzeigen ein, Passwort wird angezeigt',
|
|
5
|
+
SHOW_PASSWORD_OFF: 'Passwort anzeigen aus, Passwort wird ausgeblendet'
|
|
5
6
|
};
|
|
6
7
|
Phrasebook.define('de', 'ef-password-field', translations);
|
|
7
8
|
export default translations;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Phrasebook } from '../../translation.js';
|
|
2
2
|
const translations = {
|
|
3
3
|
SHOW_PASSWORD: 'Show password',
|
|
4
|
-
|
|
4
|
+
SHOW_PASSWORD_ON: 'Show password on, password is visible',
|
|
5
|
+
SHOW_PASSWORD_OFF: 'Show password off, password is hidden'
|
|
5
6
|
};
|
|
6
7
|
Phrasebook.define('en', 'ef-password-field', translations);
|
|
7
8
|
export default translations;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Phrasebook } from '../../translation.js';
|
|
2
2
|
const translations = {
|
|
3
|
-
SHOW_PASSWORD: '
|
|
4
|
-
|
|
3
|
+
SHOW_PASSWORD: 'パスワード表示',
|
|
4
|
+
SHOW_PASSWORD_ON: 'パスワード表示オン、パスワードが表示されています',
|
|
5
|
+
SHOW_PASSWORD_OFF: 'パスワード表示オフ、パスワードは表示されていません'
|
|
5
6
|
};
|
|
6
7
|
Phrasebook.define('ja', 'ef-password-field', translations);
|
|
7
8
|
export default translations;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Phrasebook } from '../../translation.js';
|
|
2
2
|
const translations = {
|
|
3
3
|
SHOW_PASSWORD: '显示密码',
|
|
4
|
-
|
|
4
|
+
SHOW_PASSWORD_ON: '密码显示开启,密码可见',
|
|
5
|
+
SHOW_PASSWORD_OFF: '密码显示关闭,密码被隐藏'
|
|
5
6
|
};
|
|
6
7
|
Phrasebook.define('zh', 'ef-password-field', translations);
|
|
7
8
|
export default translations;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Phrasebook } from '../../translation.js';
|
|
2
2
|
const translations = {
|
|
3
3
|
SHOW_PASSWORD: '顯示密碼',
|
|
4
|
-
|
|
4
|
+
SHOW_PASSWORD_ON: '密碼顯示開啟,密碼可見',
|
|
5
|
+
SHOW_PASSWORD_OFF: '密碼顯示關閉,密碼被隱藏'
|
|
5
6
|
};
|
|
6
7
|
Phrasebook.define('zh-Hant', 'ef-password-field', translations);
|
|
7
8
|
export default translations;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/phrasebook",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Collection of messages in EF components for translation",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "LSEG",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"dependencies": {
|
|
136
136
|
"tslib": "^2.3.1"
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "3844f684f73a3ef5f035dd567e4362add74825eb"
|
|
139
139
|
}
|