• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

access to config language setting

Scheduled Pinned Locked Moved Development
24 Posts 5 Posters 11.0k Views 5 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    sdetweil
    last edited by Feb 12, 2019, 7:37 PM

    how do I get access to the overall MM language setting in config.js in my module? that value is not passed to each modules config

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    J 1 Reply Last reply Feb 12, 2019, 7:41 PM Reply Quote 0
    • J Offline
      justjim1220 Module Developer @sdetweil
      last edited by Feb 12, 2019, 7:41 PM

      @sdetweil
      My best guess: "MagicMirror/translations/translations.js"

      "Life's Too Short To Dance With Ugly People"
      Jim Hallock - 1995

      S 1 Reply Last reply Feb 12, 2019, 7:46 PM Reply Quote 0
      • S Offline
        sdetweil @justjim1220
        last edited by sdetweil Feb 12, 2019, 7:48 PM Feb 12, 2019, 7:46 PM

        @justjim1220 no… that is available translations… I mean the value in config.js

        	port: 8086,
        	ipWhitelist: [], // Set [] to allow all IP addresses
        	               // or add a specific IPv4 of 192.168.1.5 :
        	               // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
        	               // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
        	               // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
        
        	language: "en",  < ------------ this value
        	timeFormat: 12,
          timezone: "Europe/Oslo",
        	units: "imperial",
        

        the calendar code uses this value, BUT doesn’t get it config.language is not set (cause config comes from the module block)

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        J 3 Replies Last reply Feb 12, 2019, 7:54 PM Reply Quote 0
        • J Offline
          justjim1220 Module Developer @sdetweil
          last edited by Feb 12, 2019, 7:54 PM

          @sdetweil
          from what I can tell, modules containing the ability to change the language have their own translations folder.

          Other than that, have you tried language = this.language

          "Life's Too Short To Dance With Ugly People"
          Jim Hallock - 1995

          1 Reply Last reply Reply Quote 0
          • J Offline
            justjim1220 Module Developer @sdetweil
            last edited by Feb 12, 2019, 7:56 PM

            @sdetweil

            NVM, I just tried it and it di not work.

            "Life's Too Short To Dance With Ugly People"
            Jim Hallock - 1995

            1 Reply Last reply Reply Quote 0
            • J Offline
              justjim1220 Module Developer @sdetweil
              last edited by Feb 12, 2019, 8:03 PM

              @sdetweil

              Which calendar module are you referring to?

              "Life's Too Short To Dance With Ugly People"
              Jim Hallock - 1995

              S 1 Reply Last reply Feb 12, 2019, 8:05 PM Reply Quote 0
              • S Offline
                sdetweil @justjim1220
                last edited by sdetweil Feb 12, 2019, 8:06 PM Feb 12, 2019, 8:05 PM

                @justjim1220 the default calendar module

                the code in calendar.js does

                	// Set locale.
                		moment.updateLocale(this.config.language, this.getLocaleSpecification(this.config.timeFormat));
                

                but it doesn’t have any value for this.config.language

                as language is not in the MODULE config…
                I also want to set timezone… as the user I am helping cannot get the clock and calendar to sync time offsets

                if I copy those values to the calendar config block than they are accessible…

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                J 2 Replies Last reply Feb 12, 2019, 8:12 PM Reply Quote 0
                • J Offline
                  justjim1220 Module Developer @sdetweil
                  last edited by Feb 12, 2019, 8:12 PM

                  @sdetweil

                  All I can find is to put this in your js file:

                  getTranslations: function() {
                  	return {
                  		en: "translations/en.json",
                  		de: "translations/de.json"
                  	}
                  }
                  

                  "Life's Too Short To Dance With Ugly People"
                  Jim Hallock - 1995

                  1 Reply Last reply Reply Quote 0
                  • J Offline
                    justjim1220 Module Developer @sdetweil
                    last edited by Feb 12, 2019, 8:20 PM

                    @sdetweil

                    for timezone:
                    Add this to your defaults in the modules js: timezone: "America/Chicago"

                    Then add this in the code:

                     getScripts: function() {
                    	return [ 
                                "moment.js", "moment-timezone.js"
                            ];
                    },
                    

                    and this:

                    var now = moment();
                    	if (this.config.timezone) {
                    	now.tz(this.config.timezone);
                    }

                    "Life's Too Short To Dance With Ugly People"
                    Jim Hallock - 1995

                    S 1 Reply Last reply Feb 12, 2019, 8:22 PM Reply Quote 0
                    • S Offline
                      sdetweil @justjim1220
                      last edited by sdetweil Feb 12, 2019, 8:24 PM Feb 12, 2019, 8:22 PM

                      @justjim1220 no… you are not understanding me…

                      how do i get the USERS config for language and timezone? not system time, etc…

                      user is in Norway…

                      this.config.language
                      

                      doesn’t exist in the calendar module… so the set locale will fail…

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      J 3 Replies Last reply Feb 12, 2019, 8:26 PM Reply Quote 1
                      • 1
                      • 2
                      • 3
                      • 1 / 3
                      1 / 3
                      • First post
                        1/24
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy