Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add Japanese messages and i18n manifest #56

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ jobs:
with:
name: playwright-report
path: playwright-report/
retention-days: 30
retention-days: 7
- uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: test-results/
retention-days: 7
5 changes: 4 additions & 1 deletion _locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"author": { "message": "Leko" },
"appName": { "message": "gcal-url-opener" },
"appName": { "message": "Google Calendar URL opener" },
"appDescription": {
"message": "Chrome extension that automatically opens Zoom, Google Meet, Teams, and other meeting URLs associated with your Google Calendar shortly before the meeting starts."
},
"refresh": { "message": "Refresh" },
"signOut": { "message": "Sign out" },
"eventStartsIn": {
Expand Down
6 changes: 6 additions & 0 deletions _locales/ja/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"appName": { "message": "Google Calendar URL opener" },
"appDescription": {
"message": "Googleカレンダーのイベント開始数分前にリモートミーティングのURLを自動で開くChrome拡張"
}
}
11 changes: 3 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"manifest_version": 3,
"name": "crx-gcal-url-opener",
"description": "Chrome extension that automatically opens Google Calendar meet links and event URLs",
"permissions": [
"alarms",
"identity",
"identity.email",
"storage"
],
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"permissions": ["alarms", "identity", "identity.email", "storage"],
"default_locale": "en",
"content_security_policy": {},
"action": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "crx-gcal-url-opener",
"private": true,
"type": "module",
"version": "1.1.0",
"description": "Chrome extension that automatically opens Google Calendar meet links and event URLs",
"workspaces": [
"./docs"
],
Expand Down
Loading