Skip to content

Commit

Permalink
perf: 💄 Optimize Russian display effect
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Oct 21, 2024
1 parent eeb8a02 commit 5ca39ae
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 8 additions & 1 deletion .eslintrc-auto-import.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@
"watchPostEffect": true,
"watchSyncEffect": true,
"ElMessage": true,
"ElButtonProps": true
"ElButtonProps": true,
"DirectiveBinding": true,
"MaybeRef": true,
"MaybeRefOrGetter": true,
"onWatcherCleanup": true,
"useId": true,
"useModel": true,
"useTemplateRef": true
}
}
2 changes: 1 addition & 1 deletion README-RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
📱 Отображение и управление вашим Android-устройством с графическим интерфейсом Scrcpy на базе Electron. [English](https://github.com/viarotel-org/escrcpy/blob/main/README.md)

<div style="display:flex;">
<img src="./screenshots/en-US/overview.jpg" alt="viarotel-escrcpy" width="100%">
<img src="./screenshots/ru-RU/overview.jpg" alt="viarotel-escrcpy" width="100%">
</div>

## Особенности
Expand Down
Binary file added screenshots/ru-RU/overview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Device/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<el-table-column
v-slot="{ row, $index }"
:label="$t('device.control.name')"
min-width="200"
min-width="250"
align="left"
>
<MirrorAction
Expand Down
10 changes: 6 additions & 4 deletions src/components/Preference/components/PreferenceForm/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<el-form
ref="elForm"
:model="preferenceData"
label-width="225px"
label-width="250px"
class="pr-8 pt-4"
>
<el-row :gutter="20">
Expand Down Expand Up @@ -63,9 +63,11 @@
>
</el-link>
</el-tooltip>
<span class="" :title="$t(item_1.placeholder)">{{
$t(item_1.label)
}}</span>
<div class="truncate max-w-56" :title="$t(item_1.label)">
{{
$t(item_1.label)
}}
</div>
</div>
</template>

Expand Down

0 comments on commit 5ca39ae

Please sign in to comment.