-
Notifications
You must be signed in to change notification settings - Fork 231
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
Added Todo List Feature #322
Changes from all commits
3e61e1e
dd4e1ce
b06c71f
c182bfe
f67c4c3
d0eda7f
2bfbead
202ccf2
bbd48ea
2a9932e
f65c6ee
33bae92
87182a5
78fe7c1
8e55573
e4f913d
cd05d39
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,8 @@ const translations = { | |
"enable_ai_tools": "Show shortcuts for AI tools", | ||
"googleAppsMenuText": "Google Apps", | ||
"googleAppsMenuInfo": "Show shortcuts for Google Apps", | ||
"todoListText": "To Do List", | ||
"todoListInfo": "Show a Daily To Do List", | ||
// Digital Clock | ||
"digitalclocktittle": "Digital Clock", | ||
"digitalclockinfo": "Switch to the digital clock", | ||
|
@@ -83,10 +85,12 @@ const translations = { | |
"enterBtn": "Search", | ||
"searchPlaceholder": "Type here...", | ||
"listenPlaceholder": "Listening...", | ||
"todoPlaceholder": "Add task...", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changed wrong There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh lol, I'll fix this in a min There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done 👍 |
||
"searchWithHint": "Search With", | ||
"ai_tools": "AI Tools", | ||
"userText": "Click here to edit", | ||
"googleAppsHover": "Google Apps", // Keep this untranslated if string width is much longer | ||
"todoListHover": "ToDo List", // Keep this untranslated if string width is much longer | ||
// End of Body and New Tab Items | ||
|
||
// Greeting | ||
|
@@ -345,6 +349,8 @@ const translations = { | |
"enable_ai_tools": "AI उपकरणों के शॉर्टकट्स प्रदर्शित करें", | ||
"googleAppsMenuText": "गूगल ऐप्स", | ||
"googleAppsMenuInfo": "गूगल ऐप्स के शॉर्टकट्स प्रदर्शित करें", | ||
"todoListText": "कार्य सूची", | ||
"todoListInfo": "अपनी दैनिक कार्य सूची देखें और व्यवस्थित रहें", | ||
// Digital Clock | ||
"digitalclocktittle": "डिजिटल घड़ी", | ||
"digitalclockinfo": "डिजिटल घड़ी पर स्विच करें", | ||
|
@@ -402,6 +408,7 @@ const translations = { | |
"enterBtn": "खोजें", | ||
"searchPlaceholder": "यहाँ लिखें...", | ||
"listenPlaceholder": "सुन रहे हैं...", | ||
"todoPlaceholder": "कार्य जोड़ें...", | ||
"searchWithHint": "खोज माध्यम", | ||
"ai_tools": "AI उपकरण", | ||
"userText": "यहाँ अपना टेक्स्ट लिखें", | ||
|
@@ -427,6 +434,7 @@ const translations = { | |
"firefly": "एडोबी फायरफ्लाई", | ||
"github": "गिटहब", | ||
"googleAppsHover": "गूगल ऐप्स", | ||
"todoListHover": "कार्य सूची", | ||
|
||
// Wallpaper and alerts | ||
"uploadWallpaperText": "वॉलपेपर अपलोड करें", | ||
|
@@ -1858,6 +1866,9 @@ function applyLanguage(lang) { | |
{ id: 'enable_ai_tools', key: 'enable_ai_tools' }, | ||
{ id: 'googleAppsMenuText', key: 'googleAppsMenuText' }, | ||
{ id: 'googleAppsMenuInfo', key: 'googleAppsMenuInfo' }, | ||
{ id: 'todoListHeading', key: 'todoListText' }, | ||
{ id: 'todoListText', key: 'todoListText' }, | ||
{ id: 'todoListInfo', key: 'todoListInfo' }, | ||
{ id: 'fahrenheitCelsiusCheckbox', key: 'fahrenheitCelsiusCheckbox' }, | ||
{ id: 'fahrenheitCelsiusText', key: 'fahrenheitCelsiusText' }, | ||
{ id: 'micIconTitle', key: 'micIconTitle' }, | ||
|
@@ -1893,6 +1904,7 @@ function applyLanguage(lang) { | |
{ id: 'conditionText', key: 'conditionText' }, | ||
{ id: 'enterBtn', key: 'enterBtn' }, | ||
{ id: 'searchQ', key: 'searchPlaceholder', isPlaceholder: true }, | ||
{ id: 'todoInput', key: 'todoPlaceholder', isPlaceholder: true }, | ||
{ id: 'searchWithHint', key: 'searchWithHint' }, | ||
{ id: 'ai_tools', key: 'ai_tools' }, | ||
{ id: 'humidityLevel', key: 'humidityLevel' }, | ||
|
@@ -1916,6 +1928,7 @@ function applyLanguage(lang) { | |
{ id: 'metaAI', key: 'metaAI'}, | ||
{ id: 'github', key: 'github' }, | ||
{ id: 'googleAppsHover', key: 'googleAppsHover' }, | ||
{ id: 'todoListHover', key: 'todoListHover' }, | ||
{ id: 'uploadWallpaperText', key: 'uploadWallpaperText' }, | ||
{ id: 'backupText', key: 'backupText' }, | ||
{ id: 'restoreText', key: 'restoreText' }, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todoListHeading and todoInput missing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was no need to write the same thing twice so I did this
Added the todoPlaceholder in my recent commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my bad, didn't noticed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no problem :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this new person is better than prem 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hehe.. I always miss something when checking from mobile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol no, I am not better
I'm still learning from other great people
Before yesterday I didn't even knew what XSS was
so you have my thanks @prem-k-r
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nah we are just friends. Just making some fun. Thats all. 🙃
Don't worry.