How to change time and date language to English?












1














I do not know how it comes, but my calendar(upper right corner) is in Polish. How to change this to English?










share|improve this question
























  • only that text is affected and all the other text is in English?
    – Sumeet Deshmukh
    May 24 '17 at 14:48










  • @SumeetDeshmukh Yes,everything else is in English.
    – MikiBelavista
    May 24 '17 at 14:59
















1














I do not know how it comes, but my calendar(upper right corner) is in Polish. How to change this to English?










share|improve this question
























  • only that text is affected and all the other text is in English?
    – Sumeet Deshmukh
    May 24 '17 at 14:48










  • @SumeetDeshmukh Yes,everything else is in English.
    – MikiBelavista
    May 24 '17 at 14:59














1












1








1


1





I do not know how it comes, but my calendar(upper right corner) is in Polish. How to change this to English?










share|improve this question















I do not know how it comes, but my calendar(upper right corner) is in Polish. How to change this to English?







16.04 settings






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 24 '17 at 14:48









Sumeet Deshmukh

4,34152971




4,34152971










asked May 24 '17 at 14:43









MikiBelavista

2742921




2742921












  • only that text is affected and all the other text is in English?
    – Sumeet Deshmukh
    May 24 '17 at 14:48










  • @SumeetDeshmukh Yes,everything else is in English.
    – MikiBelavista
    May 24 '17 at 14:59


















  • only that text is affected and all the other text is in English?
    – Sumeet Deshmukh
    May 24 '17 at 14:48










  • @SumeetDeshmukh Yes,everything else is in English.
    – MikiBelavista
    May 24 '17 at 14:59
















only that text is affected and all the other text is in English?
– Sumeet Deshmukh
May 24 '17 at 14:48




only that text is affected and all the other text is in English?
– Sumeet Deshmukh
May 24 '17 at 14:48












@SumeetDeshmukh Yes,everything else is in English.
– MikiBelavista
May 24 '17 at 14:59




@SumeetDeshmukh Yes,everything else is in English.
– MikiBelavista
May 24 '17 at 14:59










3 Answers
3






active

oldest

votes


















1














data utility uses variable LC_TIME to know what language of days to use. If you want to know if this is really the issue, try:



echo $LC_TIME


then if you dont want to mess up anything, but still have different language in your script just change it in your script like



LC_TIME=en_US.utf8





share|improve this answer





























    4














    If everything except date is in English, then there is a high chance that the value of LC_TIME is something wrong, use localectl command to change it to your desired locale:



    sudo localectl set-locale LC_TIME=en_US.utf8


    or en_GB.utf8 for UK.



    You can also place LC_TIME=en_US.utf8 at this file /etc/default/locale manually if you wish.






    share|improve this answer





























      0














      Select the system settings "window". Click on Language Support. In the Regional Format tab set the preferred language. I had same problem when I first set clock wound up in Spanish. You will need to restart after change to take affect.






      share|improve this answer





















        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "89"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f918482%2fhow-to-change-time-and-date-language-to-english%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        1














        data utility uses variable LC_TIME to know what language of days to use. If you want to know if this is really the issue, try:



        echo $LC_TIME


        then if you dont want to mess up anything, but still have different language in your script just change it in your script like



        LC_TIME=en_US.utf8





        share|improve this answer


























          1














          data utility uses variable LC_TIME to know what language of days to use. If you want to know if this is really the issue, try:



          echo $LC_TIME


          then if you dont want to mess up anything, but still have different language in your script just change it in your script like



          LC_TIME=en_US.utf8





          share|improve this answer
























            1












            1








            1






            data utility uses variable LC_TIME to know what language of days to use. If you want to know if this is really the issue, try:



            echo $LC_TIME


            then if you dont want to mess up anything, but still have different language in your script just change it in your script like



            LC_TIME=en_US.utf8





            share|improve this answer












            data utility uses variable LC_TIME to know what language of days to use. If you want to know if this is really the issue, try:



            echo $LC_TIME


            then if you dont want to mess up anything, but still have different language in your script just change it in your script like



            LC_TIME=en_US.utf8






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Dec 4 '18 at 9:08









            Viktor Nagy

            261




            261

























                4














                If everything except date is in English, then there is a high chance that the value of LC_TIME is something wrong, use localectl command to change it to your desired locale:



                sudo localectl set-locale LC_TIME=en_US.utf8


                or en_GB.utf8 for UK.



                You can also place LC_TIME=en_US.utf8 at this file /etc/default/locale manually if you wish.






                share|improve this answer


























                  4














                  If everything except date is in English, then there is a high chance that the value of LC_TIME is something wrong, use localectl command to change it to your desired locale:



                  sudo localectl set-locale LC_TIME=en_US.utf8


                  or en_GB.utf8 for UK.



                  You can also place LC_TIME=en_US.utf8 at this file /etc/default/locale manually if you wish.






                  share|improve this answer
























                    4












                    4








                    4






                    If everything except date is in English, then there is a high chance that the value of LC_TIME is something wrong, use localectl command to change it to your desired locale:



                    sudo localectl set-locale LC_TIME=en_US.utf8


                    or en_GB.utf8 for UK.



                    You can also place LC_TIME=en_US.utf8 at this file /etc/default/locale manually if you wish.






                    share|improve this answer












                    If everything except date is in English, then there is a high chance that the value of LC_TIME is something wrong, use localectl command to change it to your desired locale:



                    sudo localectl set-locale LC_TIME=en_US.utf8


                    or en_GB.utf8 for UK.



                    You can also place LC_TIME=en_US.utf8 at this file /etc/default/locale manually if you wish.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 24 '17 at 15:01









                    Ravexina

                    31.4k1481110




                    31.4k1481110























                        0














                        Select the system settings "window". Click on Language Support. In the Regional Format tab set the preferred language. I had same problem when I first set clock wound up in Spanish. You will need to restart after change to take affect.






                        share|improve this answer


























                          0














                          Select the system settings "window". Click on Language Support. In the Regional Format tab set the preferred language. I had same problem when I first set clock wound up in Spanish. You will need to restart after change to take affect.






                          share|improve this answer
























                            0












                            0








                            0






                            Select the system settings "window". Click on Language Support. In the Regional Format tab set the preferred language. I had same problem when I first set clock wound up in Spanish. You will need to restart after change to take affect.






                            share|improve this answer












                            Select the system settings "window". Click on Language Support. In the Regional Format tab set the preferred language. I had same problem when I first set clock wound up in Spanish. You will need to restart after change to take affect.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Apr 14 '18 at 22:20









                            jim

                            1




                            1






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Ask Ubuntu!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.





                                Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                Please pay close attention to the following guidance:


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f918482%2fhow-to-change-time-and-date-language-to-english%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                                ComboBox Display Member on multiple fields

                                Is it possible to collect Nectar points via Trainline?