diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-20 22:24:26 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-20 22:24:26 +0900 |
| commit | 50e3ca19bc45c1fd4fd7432bdb30a130f2691076 (patch) | |
| tree | 44415cdf4dd1bfd0abdf440dd4a19e310ee8fd87 /packages/client/src/pages/admin/abuses.vue | |
| parent | chore(deps): bump terser from 5.9.0 to 5.14.2 (#9024) (diff) | |
| download | misskey-50e3ca19bc45c1fd4fd7432bdb30a130f2691076.tar.gz misskey-50e3ca19bc45c1fd4fd7432bdb30a130f2691076.tar.bz2 misskey-50e3ca19bc45c1fd4fd7432bdb30a130f2691076.zip | |
refactor(client): :sparkles:
Diffstat (limited to 'packages/client/src/pages/admin/abuses.vue')
| -rw-r--r-- | packages/client/src/pages/admin/abuses.vue | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/packages/client/src/pages/admin/abuses.vue b/packages/client/src/pages/admin/abuses.vue index 11cf284b22..9c718ab9e4 100644 --- a/packages/client/src/pages/admin/abuses.vue +++ b/packages/client/src/pages/admin/abuses.vue @@ -7,31 +7,31 @@ <div class="_content"> <div class="inputs" style="display: flex;"> <MkSelect v-model="state" style="margin: 0; flex: 1;"> - <template #label>{{ $ts.state }}</template> - <option value="all">{{ $ts.all }}</option> - <option value="unresolved">{{ $ts.unresolved }}</option> - <option value="resolved">{{ $ts.resolved }}</option> + <template #label>{{ i18n.ts.state }}</template> + <option value="all">{{ i18n.ts.all }}</option> + <option value="unresolved">{{ i18n.ts.unresolved }}</option> + <option value="resolved">{{ i18n.ts.resolved }}</option> </MkSelect> <MkSelect v-model="targetUserOrigin" style="margin: 0; flex: 1;"> - <template #label>{{ $ts.reporteeOrigin }}</template> - <option value="combined">{{ $ts.all }}</option> - <option value="local">{{ $ts.local }}</option> - <option value="remote">{{ $ts.remote }}</option> + <template #label>{{ i18n.ts.reporteeOrigin }}</template> + <option value="combined">{{ i18n.ts.all }}</option> + <option value="local">{{ i18n.ts.local }}</option> + <option value="remote">{{ i18n.ts.remote }}</option> </MkSelect> <MkSelect v-model="reporterOrigin" style="margin: 0; flex: 1;"> - <template #label>{{ $ts.reporterOrigin }}</template> - <option value="combined">{{ $ts.all }}</option> - <option value="local">{{ $ts.local }}</option> - <option value="remote">{{ $ts.remote }}</option> + <template #label>{{ i18n.ts.reporterOrigin }}</template> + <option value="combined">{{ i18n.ts.all }}</option> + <option value="local">{{ i18n.ts.local }}</option> + <option value="remote">{{ i18n.ts.remote }}</option> </MkSelect> </div> <!-- TODO <div class="inputs" style="display: flex; padding-top: 1.2em;"> <MkInput v-model="searchUsername" style="margin: 0; flex: 1;" type="text" :spellcheck="false"> - <span>{{ $ts.username }}</span> + <span>{{ i18n.ts.username }}</span> </MkInput> <MkInput v-model="searchHost" style="margin: 0; flex: 1;" type="text" :spellcheck="false" :disabled="pagination.params().origin === 'local'"> - <span>{{ $ts.host }}</span> + <span>{{ i18n.ts.host }}</span> </MkInput> </div> --> |