File tree Expand file tree Collapse file tree 5 files changed +18
-6
lines changed
Expand file tree Collapse file tree 5 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 160160 "stop" : {
161161 "message" : " Stop"
162162 },
163+ "pomodoroIsEnabled" : {
164+ "message" : " Der Pomodoro-Modus ist aktiviert"
165+ },
163166 "aboutSettings" : {
164167 "message" : " Über die Erweiterung"
165168 },
Original file line number Diff line number Diff line change 163163 "stop" : {
164164 "message" : " Stop"
165165 },
166+ "pomodoroIsEnabled" : {
167+ "message" : " Pomodoro Mode is enabled"
168+ },
166169 "aboutSettings" : {
167170 "message" : " About"
168171 },
Original file line number Diff line number Diff line change 160160 "stop" : {
161161 "message" : " Остановить"
162162 },
163+ "pomodoroIsEnabled" : {
164+ "message" : " Режим Pomodoro включен"
165+ },
163166 "aboutSettings" : {
164167 "message" : " \u041E программе"
165168 },
Original file line number Diff line number Diff line change 160160 "stop" : {
161161 "message" : " 停止"
162162 },
163+ "pomodoroIsEnabled" : {
164+ "message" : " 番茄钟模式已启用"
165+ },
163166 "aboutSettings" : {
164167 "message" : " 关于"
165168 },
Original file line number Diff line number Diff line change 11<template >
22 <div class =" pomodoro-popup-block" v-if =" isEnabled" >
3- <p >Pomodoro Mode is enabled </p >
4- <span v-if =" isWorkingTime" >WORK </span >
5- <span v-if =" !isWorkingTime" >REST </span >
3+ <p >{{ t('pomodoroIsEnabled.message') }} </p >
4+ <span v-if =" isWorkingTime" >{{ t('pomodoroWork.message') }} </span >
5+ <span v-if =" !isWorkingTime" >{{ t('pomodoroRest.message') }} </span >
66 <input
77 type =" button"
88 :value =" t('pomodoroSettings.message')"
@@ -18,7 +18,7 @@ export default {
1818 </script >
1919
2020<script lang="ts" setup>
21- import { computed , onMounted , ref } from ' vue' ;
21+ import { onMounted , ref } from ' vue' ;
2222import { StorageParams , IS_POMODORO_ENABLED_DEFAULT } from ' ../storage/storage-params' ;
2323import { useI18n } from ' vue-i18n' ;
2424import { injecStorage } from ' ../storage/inject-storage' ;
@@ -47,7 +47,7 @@ onMounted(async () => {
4747 width : -webkit-fill-available ;
4848 position : fixed ;
4949 bottom : 0 ;
50- padding : 8px 20 px ;
50+ padding : 8px 10 px ;
5151 font-size : 14px ;
5252 background-color : #efefef ;
5353}
@@ -61,7 +61,7 @@ onMounted(async () => {
6161 padding : 5px ;
6262 background-color : rgb (105 , 202 , 105 );
6363 color : black ;
64- margin-left : 10 px ;
64+ margin-left : 5 px ;
6565 border-radius : 5px ;
6666 font-weight : 500 ;
6767 font-size : 13px ;
You can’t perform that action at this time.
0 commit comments