File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed
Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ msgstr ""
2929msgid "Close"
3030msgstr ""
3131
32+ msgid "Close navigation"
33+ msgstr ""
34+
3235msgid "Confirm changes"
3336msgstr ""
3437
@@ -50,6 +53,9 @@ msgstr ""
5053msgid "Global"
5154msgstr ""
5255
56+ msgid "Go back to the list"
57+ msgstr ""
58+
5359msgid "Message limit of {count} characters reached"
5460msgstr ""
5561
@@ -65,6 +71,9 @@ msgstr ""
6571msgid "Objects"
6672msgstr ""
6773
74+ msgid "Open navigation"
75+ msgstr ""
76+
6877msgid "Pause slideshow"
6978msgstr ""
7079
Original file line number Diff line number Diff line change 2727<script >
2828import { emit } from ' @nextcloud/event-bus'
2929
30- import l10n from ' ../../mixins /l10n'
30+ import { t } from ' ../../l10n'
3131export default {
3232 name: ' AppDetailsToggle' ,
3333
34- mixins: [l10n],
35-
3634 computed: {
3735 title () {
38- return this . t (' Go back to the list' )
36+ return t (' Go back to the list' )
3937 },
4038 },
4139
Original file line number Diff line number Diff line change 4040<script >
4141import Actions from ' ../Actions/Actions'
4242import ActionButton from ' ../ActionButton/ActionButton'
43- import l10n from ' ../../mixins /l10n'
43+ import { t } from ' ../../l10n'
4444
4545import Menu from ' vue-material-design-icons/Menu'
4646
@@ -53,8 +53,6 @@ export default {
5353 Menu,
5454 },
5555
56- mixins: [l10n],
57-
5856 props: {
5957 open: {
6058 type: Boolean ,
@@ -64,7 +62,7 @@ export default {
6462
6563 computed: {
6664 label () {
67- return this .open ? this . t (' Close navigation' ) : this . t (' Open navigation' )
65+ return this .open ? t (' Close navigation' ) : t (' Open navigation' )
6866 },
6967 },
7068 methods: {
You can’t perform that action at this time.
0 commit comments