• Extensions
  • Linguist, customize translations with ease

aaronlbpeterman I can't replicate. The key you're referring to must be clarkwinkelmann-group-list.forum.nav. Don't forget to clear the translation cache with the button that appears at the top of the Linguist page after saving.

If you still have issues can you describe in more details? Are you unable to find the text in Linguist or does the saved text does not render in the page?

    clarkwinkelmann I’ll dive into this and let you know.

    Right now I have to access to pc and on my phone it does not display properly, so for now I have to put it off. Gonna try tomorrow.

    3 months later

    Thanks for developing this extension.

    Just a thought, is it possible to develop a feature that there will be a loading option for 50 or 100, or all?

    I clicked 61 times to load all the strings, and need to scroll to bottom for each time. 😅 Or maybe there is other way, I can do it?

      ash3T why do you need to see thousands of translations at a single time?

      For export, there's a dedicated export tab. For search, there is text and manual filters, if you make many translations, you can filter out everything already translated next time you continue the translation work.

      2 months later

      This is an excellent and highly advanced extension. Thank you for bringing this to us.

      2 months later

      I heard we can change page title separator using this extension from v1.2 how can I do it? Can I do it if i am in flarum v1.1?

      Bla bla - Flarum to Bal bla | Flarum what should I search

        Hari search for page_title

        The two translations are core.lib.meta_titles.with_page_title and core.lib.meta_titles.without_page_title

        The format looks complicated because it contains plural rules to change format when browsing a page >=2

        • Hari replied to this.
          24 days later

          It's me again, this really a great extension 🧡🧡
          Coming to the question, how can change email username. I mean flarum sends emails right and I want to modify username. by default it's site name.

          Ask YouTube to AskYouTube

          If you ask me why i want to do that, because in Gmail app they only show first word not the full user name .. if the name has space they will skip the second word.

          In wordpress we use SMTP plugin to define sending user name and email subject. How can do it in flarum.

          Don't want to touch core files.

            Hari unfortunately Linguist can't help here because the translation system is not used for this.

            It's relatively easy to make the change using some custom code in the root extend.php file:

            <?php
            
            use Flarum\Extend;
            
            class MailServiceProvider extends \Flarum\Foundation\AbstractServiceProvider {
                public function register()
                {
                    $this->container->extend('mailer', function ($mailer) {
                        $mailer->alwaysFrom(
                            $this->container->make('flarum.settings')->get('mail_from'),
                            'EmailFromName' // Change this string with your custom name
                        );
                        
                        return $mailer;
                    });
                }
            }
            
            return [
                // Register extenders here to customize your forum!
                (new Extend\ServiceProvider())->register(MailServiceProvider::class),
            ];

            An extension could easily add this as a new field on the Admin > EMail page. I'm not sure why Flarum doesn't make the From name customizable. It's indeed hard-coded to be the forum name by default.

              Hari The main extend.php file will not be overwritten, only the stuff in the vendor folder.

                me again 👀, when my server gets stuck due to heavy load flarum throws an error saying "flarum Encountered Boot Error" how can i change this error message?

                i want it to be generic saying We Encountered Boot Error don't want to confuse my users with the word "flarum"

                  Hari unfortunately that error message cannot be customized. It's hard-coded on purpose because on boot error the translation system might not be available.

                  It's not supposed to be visible unless something went terribly wrong though. What is the actual error behind the scene? You might be able to solve/detect the issue at that level and react accordingly.

                  For instance if it's the database that receives too many connections, a Flarum extension could detect it before it's too late and offer a custom error page for that situation.

                    clarkwinkelmann true but at the same time i can not divert my users saying "flarum" i request to edit this at the core level to We Encountered Boot Error in later versions of flarum.

                      Hari we can certainly discuss a change for core, but in my opinion it's important that the error message contains the word "Flarum" so a forum administrator understands which part of the software is throwing the error. Otherwise it's difficult to tell whether it's an error at the webserver level or at the Flarum level. It speeds up troubleshooting a lot when you know what fact.

                      You might be able to change your webserver configuration to force a given HTML file to be rendered for all 500 errors.

                      Changing the message in Flarum locally will require some Composer tricks to provide an override file, or place the overridden class in a different namespace and call it from index.php. I don't think it's possible to just wrap everything in a new try/catch block, because the bit of code where this message is hard-coded is the big try/catch block that catches everything the regular Flarum error handler can't handle.

                      But again, that page is not supposed to be visible under normal operation. Feel free to open a new issue/discussion about your actual 500 error so we can see if we can handle this situation more gracefully and not end up with a boot error in the first place.

                        clarkwinkelmann sure, i have deleted old logs once I face the same issue again i will start a new discussion with log

                        2 months later

                        clarkwinkelmann How to add new language to translate to it i mean like in the topic picture
                        english (en)
                        italiano
                        instead of translating strings to my desires lang in field of All