This commit is contained in:
star7th
2025-04-10 18:06:45 +08:00
commit 54650cd944
154 changed files with 29090 additions and 0 deletions
@@ -0,0 +1,49 @@
export const timezoneConverterEn = {
title: 'Timezone Converter',
description: 'Convert time between different timezones',
date_time: 'Date & Time',
source_timezone: 'Source Timezone',
target_timezone: 'Target Timezone',
conversion_result: 'Conversion Result',
converted_time: 'Converted Time',
detailed_result: 'Detailed Result',
current_time: 'Current Time',
use_current_time: 'Use Current Time',
copy: 'Copy',
copied: 'Copied',
copy_failed: 'Copy failed',
timezone_conversion_error: 'Timezone conversion error',
input_date_time_select_timezone: 'Please enter date & time and select timezone to convert',
timezone_note: 'Note: Timezone conversion results have taken daylight saving time into account, different regions may implement DST on different dates',
timezone_display_note: 'Timezone names may vary based on your operating system and browser language settings',
common_timezone_info: 'Common Timezone Information',
asia_pacific: 'Asia Pacific',
europe: 'Europe',
americas: 'Americas',
china: 'China',
japan: 'Japan',
korea: 'Korea',
singapore: 'Singapore',
india: 'India',
australia: 'Australia',
uk: 'UK',
france: 'France',
germany: 'Germany',
russia: 'Russia',
us_eastern: 'US Eastern',
us_central: 'US Central',
us_western: 'US Western',
brazil: 'Brazil',
about_timezone: 'About Timezone Notation:',
timezone_offset_info: 'Offset like "+08:00" means 8 hours ahead of UTC',
timezone_dst_info: 'Format like "+01:00/+02:00" indicates standard time/daylight saving time',
dst_implementation: 'DST is typically implemented from March to November in the Northern Hemisphere',
source_time: 'Source Time',
target_time: 'Target Time',
timestamp: 'Timestamp',
iso_format: 'ISO Format',
invalid_date_time: 'Invalid date time',
please_enter_valid_date_time: 'Please enter a valid date time'
};
export default timezoneConverterEn;
@@ -0,0 +1,9 @@
import timezoneConverterZh from './zh';
import timezoneConverterEn from './en';
export const timezoneConverter = {
zh: timezoneConverterZh,
en: timezoneConverterEn
};
export default timezoneConverter;
@@ -0,0 +1,49 @@
export const timezoneConverterZh = {
title: '时区转换',
description: '不同时区之间的时间转换工具',
date_time: '日期时间',
source_timezone: '源时区',
target_timezone: '目标时区',
conversion_result: '转换结果',
converted_time: '转换后时间',
detailed_result: '详细结果',
current_time: '当前时间',
use_current_time: '使用当前时间',
copy: '复制',
copied: '已复制',
copy_failed: '复制失败',
timezone_conversion_error: '时区转换错误',
input_date_time_select_timezone: '请输入日期时间并选择时区进行转换',
timezone_note: '注意:时区转换结果已考虑了夏令时的影响,不同地区的夏令时实施日期可能不同',
timezone_display_note: '时区名称根据操作系统和浏览器语言设置可能有所不同',
common_timezone_info: '常见时区信息',
asia_pacific: '亚太地区',
europe: '欧洲地区',
americas: '美洲地区',
china: '中国',
japan: '日本',
korea: '韩国',
singapore: '新加坡',
india: '印度',
australia: '澳大利亚',
uk: '英国',
france: '法国',
germany: '德国',
russia: '俄罗斯',
us_eastern: '美国东部',
us_central: '美国中部',
us_western: '美国西部',
brazil: '巴西',
about_timezone: '关于时区表示:',
timezone_offset_info: '偏移量如 "+08:00" 表示比 UTC 快8小时',
timezone_dst_info: '形如 "+01:00/+02:00" 表示标准时间/夏令时',
dst_implementation: '夏令时在北半球通常从3月到11月实施',
source_time: '源时间',
target_time: '目标时间',
timestamp: '时间戳',
iso_format: 'ISO 格式',
invalid_date_time: '无效的日期时间',
please_enter_valid_date_time: '请输入有效的日期时间'
};
export default timezoneConverterZh;