Talking clock that self-discharges audio for blind people
Posted: Mon Jan 10, 2022 6:45 pm
It has been a while since the last time I was present in this forum ( LINK ), due to these dates and the current situation against covid-19, I have not been able to work much on my project, but I have continued doing tests, making mistakes, study and do various small progress.
Now I am at a dead end, or rather, in other words, the next big step, establishing a simple format to create a list of keywords, encompassing all possible variants to other languages to carry out this simple task: say the time and date autonomously without the need for an internet connection (more or less).
My personal way of undertaking this process is as follows:
- Have a file ( or by means of a structure in the programming ), with all the languages available in google translator with their corresponding code. list of languages supported by Google Translate.
- Keyword file configuration:
The file containing all the languages could be like this (the option I am working with just for tests):
Of course, this can be expanded without much trouble to contain the equivalence of each language to the others, for reasons of having an audible menu.
For example, OPCION A could be like this (the option I am working with just for tests):
and OPTION B would be something like this:
---------------------------------------------------------------------------
For now because it is too late for me, if someone is interested in this project and has any ideas or suggestions, I am with an open mind, in the next few days I will update the post with the parts of code that I have already done (open to suggestions and changes).
I have no training in programming, everything is self-study, be nice if you criticize something.
Also, I must apologize if any phrase or word is incorrect, English is not my mother tongue (I speak Spanish, but I read and understand English well).
Thank you.
[spoiler]Spoiler Content[/spoiler]
Now I am at a dead end, or rather, in other words, the next big step, establishing a simple format to create a list of keywords, encompassing all possible variants to other languages to carry out this simple task: say the time and date autonomously without the need for an internet connection (more or less).
My personal way of undertaking this process is as follows:
- Have a file ( or by means of a structure in the programming ), with all the languages available in google translator with their corresponding code. list of languages supported by Google Translate.
- Keyword file configuration:
- Have a basic file for each language, containing all the keywords necessary for the normal operation of the clock.
- Have a basic file, containing all the keywords for all the languages already translated.
The file containing all the languages could be like this (the option I am working with just for tests):
Code: Select all
File -> languages.txt
Spanish,es
English,en
French,fr
...
Of course, this can be expanded without much trouble to contain the equivalence of each language to the others, for reasons of having an audible menu.
Code: Select all
File -> languages.txt
Español(es),Ingles(es),Frances(es) ...
Spanish(en),English(en),French(en) ...
Espagnol(fr),Anglais(fr),français(fr) ...
...
For example, OPCION A could be like this (the option I am working with just for tests):
Code: Select all
File -> weeks.txt
Monday
Tuesday
Wednesday
...
and OPTION B would be something like this:
Code: Select all
File -> weeks.txt
Lunes(es),Monday(en),Lundi(fr) ...
Martes(es),Tuesday(en),mardi(fr) ...
Miercoles(es),Wednesday(en),mercredi(fr) ...
...
---------------------------------------------------------------------------
For now because it is too late for me, if someone is interested in this project and has any ideas or suggestions, I am with an open mind, in the next few days I will update the post with the parts of code that I have already done (open to suggestions and changes).
I have no training in programming, everything is self-study, be nice if you criticize something.
Also, I must apologize if any phrase or word is incorrect, English is not my mother tongue (I speak Spanish, but I read and understand English well).
Thank you.
[spoiler]Spoiler Content[/spoiler]