Commit Graph

6 Commits

Author SHA1 Message Date
Anton Georgiev
4b91eaf537 Pulled HTML5 2.4 locales on July 30. The rest of the locales need manual fixes 2021-07-31 02:32:20 +00:00
Anton Georgiev
612b22da06 chore: Pulled HTML5 locales, May 12, 2021 2021-05-12 20:31:28 +00:00
Anton Georgiev
528dba7ed5 Pulled HTML5 locales; Added Afrikaans 2021-04-29 20:33:11 +00:00
Anton Georgiev
4a4efb94f8 Pulled HTML5 locales on Apr 1, 2021 2021-04-01 20:17:45 +00:00
Anton Georgiev
59cb2f107f Pulled HTML5 locales on March 12, 2021 2021-03-12 21:17:53 +00:00
Ramón Souza
0105373cee
Applies changes needed to serve locale files as static content (#11234)
* moving locales folder to /public and applying changes needed to serve locales as static files

* better dev/prod check

* transifex pull script changes to match new locales directory + ignore locales with less than 100 lines

* fix local/prod locales path

* merge fallback messages

* applies new locale changes to legacy client

`bbb-html5.nginx` file content should also be changed to the following:

```
location /html5client/locales {
  alias /usr/share/meteor/bundle/programs/web.browser/app/locales;
}

location /html5client/compatibility {
  alias /usr/share/meteor/bundle/programs/web.browser/app/compatibility;
}

location /html5client/resources {
  alias /usr/share/meteor/bundle/programs/web.browser/app/resources;
}

location /html5client/svgs {
  alias /usr/share/meteor/bundle/programs/web.browser/app/svgs;
}

location /html5client/fonts {
  alias /usr/share/meteor/bundle/programs/web.browser/app/fonts;
}

location /html5client {
  # proxy_pass http://127.0.0.1:4100; # use for development
  proxy_pass http://poolhtml5servers; # use for production
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "Upgrade";
}
```
2021-03-11 06:42:41 -05:00