Skip to content

Instantly share code, notes, and snippets.

@dbaio
Last active March 31, 2021 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbaio/1de2235e35a2f5bb3363b54dbba4d36e to your computer and use it in GitHub Desktop.
Save dbaio/1de2235e35a2f5bb3363b54dbba4d36e to your computer and use it in GitHub Desktop.
Weblate FreeBSD notes
--------------------------------------------
# Website Project: Component Setting
Component: advocacy (Example)
Gettext:
filemask: website/content/*/advocacy/_index.po
template: website/content/en/advocacy/_index.po
Language filter: ^(?!(en)$).+$ // Default: ^[^.]+$
Translation Settings:
Turn on suggestions: Yes
Allow translation propagation: True
Addons:
- Language consistency
- Contributors in comment: True
- Update PO files to match POT (msgmerge): True
Keep previous msgids of translated strings: True
Remove locations of translated strings: False
Use fuzzy matching: True
- Component discovery
RE: website/content/(?P<language>[^/.]*)/(?P<component>[^/].*)\.po
Language filter: ^[^.]+$ --> : ^(?!(en)$).+$
--------------------------------------------
# Component discovery fix
# For new components
from weblate.trans.models import Component
componentes = Component.objects.all()
for x in componentes:
if x.project.name in ('Documentation', 'Website'):
if not x.new_base:
print('-----------------------')
print(x)
print(x.filemask)
filemask = x.filemask
x.language_regex = '^(?!(en)$).+$'
filemask = x.filemask.replace("/*/", "/en/")
print(filemask)
x.new_base = filemask
print('Saving config...')
x.save()
--------------------------------------------
# Generate commands to translate through admin command
from weblate.trans.models import Component
componentes = Component.objects.all()
language = 'pt_BR'
project = 'Documentation'
for x in componentes:
if x.project.name in (project):
for translation in x.translation_set.iterator():
if translation.is_source:
continue
if translation.language_code == language:
# Translate 100% / --mode translate (default)
print(f'weblate auto_translate --source {x.project.slug}/{translation.component.slug} --threshold 100 --mt weblate {x.project.slug} {translation.component.slug} {translation.language_code}')
# Translate as fuzzy / --threshold 80 (default)
# Only in Weblate 4.6+
#print(f'weblate auto_translate --source {x.project.slug}/{translation.component.slug} --mode fuzzy --mt weblate {x.project.slug} {translation.component.slug} {translation.language_code}')
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
weblate auto_translate --source documentation/books_index --threshold 100 --mt weblate documentation books_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookkernelbuildchapter --threshold 100 --mt weblate documentation booksdevelopers-handbookkernelbuildchapter pt_BR
weblate auto_translate --source documentation/articlesbsdl-gpl --threshold 100 --mt weblate documentation articlesbsdl-gpl pt_BR
weblate auto_translate --source documentation/booksarch-handbookjailchapter --threshold 100 --mt weblate documentation booksarch-handbookjailchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookusbchapter --threshold 100 --mt weblate documentation booksarch-handbookusbchapter pt_BR
weblate auto_translate --source documentation/booksfaq_index --threshold 100 --mt weblate documentation booksfaq_index pt_BR
weblate auto_translate --source documentation/booksarch-handbookpcichapter --threshold 100 --mt weblate documentation booksarch-handbookpcichapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookbootchapter --threshold 100 --mt weblate documentation booksarch-handbookbootchapter pt_BR
weblate auto_translate --source documentation/booksdev-model_index --threshold 100 --mt weblate documentation booksdev-model_index pt_BR
weblate auto_translate --source documentation/booksfdp-primerstructurechapter --threshold 100 --mt weblate documentation booksfdp-primerstructurechapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooksmpchapter --threshold 100 --mt weblate documentation booksarch-handbooksmpchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookintroductionchapter --threshold 100 --mt weblate documentation booksdevelopers-handbookintroductionchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerexampleschapter --threshold 100 --mt weblate documentation booksfdp-primerexampleschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primeroverviewchapter --threshold 100 --mt weblate documentation booksfdp-primeroverviewchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookdriverbasicschapter --threshold 100 --mt weblate documentation booksarch-handbookdriverbasicschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbook_index --threshold 100 --mt weblate documentation booksdevelopers-handbook_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooktoolschapter --threshold 100 --mt weblate documentation booksdevelopers-handbooktoolschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerdoc-buildchapter --threshold 100 --mt weblate documentation booksfdp-primerdoc-buildchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerwriting-stylechapter --threshold 100 --mt weblate documentation booksfdp-primerwriting-stylechapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerprefacechapter --threshold 100 --mt weblate documentation booksfdp-primerprefacechapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookmacchapter --threshold 100 --mt weblate documentation booksarch-handbookmacchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookkerneldebugchapter --threshold 100 --mt weblate documentation booksdevelopers-handbookkerneldebugchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerworking-copychapter --threshold 100 --mt weblate documentation booksfdp-primerworking-copychapter pt_BR
weblate auto_translate --source documentation/booksfdp-primertoolschapter --threshold 100 --mt weblate documentation booksfdp-primertoolschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerasciidoctor-primerchapter --threshold 100 --mt weblate documentation booksfdp-primerasciidoctor-primerchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookpolicieschapter --threshold 100 --mt weblate documentation booksdevelopers-handbookpolicieschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookipv6chapter --threshold 100 --mt weblate documentation booksdevelopers-handbookipv6chapter pt_BR
weblate auto_translate --source documentation/booksfdp-primersee-alsochapter --threshold 100 --mt weblate documentation booksfdp-primersee-alsochapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerpo-translationschapter --threshold 100 --mt weblate documentation booksfdp-primerpo-translationschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerrosettachapter --threshold 100 --mt weblate documentation booksfdp-primerrosettachapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookbibliographychapter --threshold 100 --mt weblate documentation booksdevelopers-handbookbibliographychapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooksecurechapter --threshold 100 --mt weblate documentation booksdevelopers-handbooksecurechapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooksocketschapter --threshold 100 --mt weblate documentation booksdevelopers-handbooksocketschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookx86chapter --threshold 100 --mt weblate documentation booksdevelopers-handbookx86chapter pt_BR
weblate auto_translate --source documentation/booksfdp-primereditor-configchapter --threshold 100 --mt weblate documentation booksfdp-primereditor-configchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primertranslationschapter --threshold 100 --mt weblate documentation booksfdp-primertranslationschapter pt_BR
weblate auto_translate --source documentation/bookshandbookbook --threshold 100 --mt weblate documentation bookshandbookbook pt_BR
weblate auto_translate --source documentation/booksporters-handbookupgradingchapter --threshold 100 --mt weblate documentation booksporters-handbookupgradingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookversionschapter --threshold 100 --mt weblate documentation booksporters-handbookversionschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-samplemchapter --threshold 100 --mt weblate documentation booksporters-handbookporting-samplemchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-whychapter --threshold 100 --mt weblate documentation booksporters-handbookporting-whychapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooksecuritychapter --threshold 100 --mt weblate documentation booksporters-handbooksecuritychapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookquick-portingchapter --threshold 100 --mt weblate documentation booksporters-handbookquick-portingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookmakefileschapter --threshold 100 --mt weblate documentation booksporters-handbookmakefileschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooktestingchapter --threshold 100 --mt weblate documentation booksporters-handbooktestingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookpkg-fileschapter --threshold 100 --mt weblate documentation booksporters-handbookpkg-fileschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooknew-portchapter --threshold 100 --mt weblate documentation booksporters-handbooknew-portchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-dadschapter --threshold 100 --mt weblate documentation booksporters-handbookporting-dadschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookorderchapter --threshold 100 --mt weblate documentation booksporters-handbookorderchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookuseschapter --threshold 100 --mt weblate documentation booksporters-handbookuseschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookslow-portingchapter --threshold 100 --mt weblate documentation booksporters-handbookslow-portingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookspecialchapter --threshold 100 --mt weblate documentation booksporters-handbookspecialchapter pt_BR
weblate auto_translate --source documentation/bookshandbookpartii --threshold 100 --mt weblate documentation bookshandbookpartii pt_BR
weblate auto_translate --source documentation/bookshandbook_index --threshold 100 --mt weblate documentation bookshandbook_index pt_BR
weblate auto_translate --source documentation/bookshandbookpartiii --threshold 100 --mt weblate documentation bookshandbookpartiii pt_BR
weblate auto_translate --source documentation/bookshandbookpartiv --threshold 100 --mt weblate documentation bookshandbookpartiv pt_BR
weblate auto_translate --source documentation/bookshandbookparti --threshold 100 --mt weblate documentation bookshandbookparti pt_BR
weblate auto_translate --source documentation/bookshandbookprinting_index --threshold 100 --mt weblate documentation bookshandbookprinting_index pt_BR
weblate auto_translate --source documentation/bookshandbooksecurity_index --threshold 100 --mt weblate documentation bookshandbooksecurity_index pt_BR
weblate auto_translate --source documentation/bookshandbookwine_index --threshold 100 --mt weblate documentation bookshandbookwine_index pt_BR
weblate auto_translate --source documentation/bookshandbookgeom_index --threshold 100 --mt weblate documentation bookshandbookgeom_index pt_BR
weblate auto_translate --source documentation/bookshandbookmirrors_index --threshold 100 --mt weblate documentation bookshandbookmirrors_index pt_BR
weblate auto_translate --source documentation/bookshandbookkernelconfig_index --threshold 100 --mt weblate documentation bookshandbookkernelconfig_index pt_BR
weblate auto_translate --source documentation/bookshandbookvirtualization_index --threshold 100 --mt weblate documentation bookshandbookvirtualization_index pt_BR
weblate auto_translate --source documentation/bookshandbookintroduction_index --threshold 100 --mt weblate documentation bookshandbookintroduction_index pt_BR
weblate auto_translate --source documentation/bookshandbookmultimedia_index --threshold 100 --mt weblate documentation bookshandbookmultimedia_index pt_BR
weblate auto_translate --source documentation/bookshandbookdesktop_index --threshold 100 --mt weblate documentation bookshandbookdesktop_index pt_BR
weblate auto_translate --source documentation/bookshandbookboot_index --threshold 100 --mt weblate documentation bookshandbookboot_index pt_BR
weblate auto_translate --source documentation/bookshandbookpgpkeys_index --threshold 100 --mt weblate documentation bookshandbookpgpkeys_index pt_BR
weblate auto_translate --source documentation/bookshandbookadvanced-networking_index --threshold 100 --mt weblate documentation bookshandbookadvanced-networking_index pt_BR
weblate auto_translate --source documentation/bookshandbookfirewalls_index --threshold 100 --mt weblate documentation bookshandbookfirewalls_index pt_BR
weblate auto_translate --source documentation/bookshandbookbsdinstall_index --threshold 100 --mt weblate documentation bookshandbookbsdinstall_index pt_BR
weblate auto_translate --source documentation/bookshandbookfilesystems_index --threshold 100 --mt weblate documentation bookshandbookfilesystems_index pt_BR
weblate auto_translate --source documentation/bookshandbooklinuxemu_index --threshold 100 --mt weblate documentation bookshandbooklinuxemu_index pt_BR
weblate auto_translate --source documentation/bookshandbookbasics_index --threshold 100 --mt weblate documentation bookshandbookbasics_index pt_BR
weblate auto_translate --source documentation/bookshandbookmac_index --threshold 100 --mt weblate documentation bookshandbookmac_index pt_BR
weblate auto_translate --source documentation/bookshandbookx11_index --threshold 100 --mt weblate documentation bookshandbookx11_index pt_BR
weblate auto_translate --source documentation/bookshandbookdtrace_index --threshold 100 --mt weblate documentation bookshandbookdtrace_index pt_BR
weblate auto_translate --source documentation/bookshandbookdisks_index --threshold 100 --mt weblate documentation bookshandbookdisks_index pt_BR
weblate auto_translate --source documentation/bookshandbookports_index --threshold 100 --mt weblate documentation bookshandbookports_index pt_BR
weblate auto_translate --source documentation/bookshandbookppp-and-slip_index --threshold 100 --mt weblate documentation bookshandbookppp-and-slip_index pt_BR
weblate auto_translate --source documentation/bookshandbookzfs_index --threshold 100 --mt weblate documentation bookshandbookzfs_index pt_BR
weblate auto_translate --source documentation/bookshandbookusb-device-mode_index --threshold 100 --mt weblate documentation bookshandbookusb-device-mode_index pt_BR
weblate auto_translate --source documentation/bookshandbookjails_index --threshold 100 --mt weblate documentation bookshandbookjails_index pt_BR
weblate auto_translate --source documentation/articlesexplaining-bsd_index --threshold 100 --mt weblate documentation articlesexplaining-bsd_index pt_BR
weblate auto_translate --source documentation/articlesnew-users_index --threshold 100 --mt weblate documentation articlesnew-users_index pt_BR
weblate auto_translate --source documentation/articlesvinum_index --threshold 100 --mt weblate documentation articlesvinum_index pt_BR
weblate auto_translate --source documentation/articlesvm-design_index --threshold 100 --mt weblate documentation articlesvm-design_index pt_BR
weblate auto_translate --source documentation/articlesgjournal-desktop_index --threshold 100 --mt weblate documentation articlesgjournal-desktop_index pt_BR
weblate auto_translate --source documentation/articleslinux-users_index --threshold 100 --mt weblate documentation articleslinux-users_index pt_BR
weblate auto_translate --source documentation/articlessolid-state_index --threshold 100 --mt weblate documentation articlessolid-state_index pt_BR
weblate auto_translate --source documentation/articlesnanobsd_index --threshold 100 --mt weblate documentation articlesnanobsd_index pt_BR
weblate auto_translate --source documentation/articlescommitters-guide_index --threshold 100 --mt weblate documentation articlescommitters-guide_index pt_BR
weblate auto_translate --source documentation/articlesfonts_index --threshold 100 --mt weblate documentation articlesfonts_index pt_BR
weblate auto_translate --source documentation/articlespr-guidelines_index --threshold 100 --mt weblate documentation articlespr-guidelines_index pt_BR
weblate auto_translate --source documentation/articlesport-mentor-guidelines_index --threshold 100 --mt weblate documentation articlesport-mentor-guidelines_index pt_BR
weblate auto_translate --source documentation/articlespgpkeys_index --threshold 100 --mt weblate documentation articlespgpkeys_index pt_BR
weblate auto_translate --source documentation/articlespam_index --threshold 100 --mt weblate documentation articlespam_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-corealumni --threshold 100 --mt weblate documentation articlescontributorscontrib-corealumni pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-committers --threshold 100 --mt weblate documentation articlescontributorscontrib-committers pt_BR
weblate auto_translate --source documentation/articlescontributors_index --threshold 100 --mt weblate documentation articlescontributors_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-additional --threshold 100 --mt weblate documentation articlescontributorscontrib-additional pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-develalumni --threshold 100 --mt weblate documentation articlescontributorscontrib-develalumni pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-develinmemoriam --threshold 100 --mt weblate documentation articlescontributorscontrib-develinmemoriam pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-portmgralumni --threshold 100 --mt weblate documentation articlescontributorscontrib-portmgralumni pt_BR
weblate auto_translate --source documentation/articleslinux-emulation_index --threshold 100 --mt weblate documentation articleslinux-emulation_index pt_BR
weblate auto_translate --source documentation/articlesserial-uart_index --threshold 100 --mt weblate documentation articlesserial-uart_index pt_BR
weblate auto_translate --source documentation/articlesfreebsd-releng_index --threshold 100 --mt weblate documentation articlesfreebsd-releng_index pt_BR
weblate auto_translate --source documentation/articlesrc-scripting_index --threshold 100 --mt weblate documentation articlesrc-scripting_index pt_BR
weblate auto_translate --source documentation/articlesldap-auth_index --threshold 100 --mt weblate documentation articlesldap-auth_index pt_BR
weblate auto_translate --source documentation/articlesmailing-list-faq_index --threshold 100 --mt weblate documentation articlesmailing-list-faq_index pt_BR
weblate auto_translate --source documentation/articlescups_index --threshold 100 --mt weblate documentation articlescups_index pt_BR
weblate auto_translate --source documentation/articlesremote-install_index --threshold 100 --mt weblate documentation articlesremote-install_index pt_BR
weblate auto_translate --source documentation/articlesfiltering-bridges_index --threshold 100 --mt weblate documentation articlesfiltering-bridges_index pt_BR
weblate auto_translate --source documentation/booksarch-handbooklockingchapter --threshold 100 --mt weblate documentation booksarch-handbooklockingchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primer_index --threshold 100 --mt weblate documentation booksfdp-primer_index pt_BR
weblate auto_translate --source documentation/booksarch-handbook_index --threshold 100 --mt weblate documentation booksarch-handbook_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooktestingchapter --threshold 100 --mt weblate documentation booksdevelopers-handbooktestingchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookscsichapter --threshold 100 --mt weblate documentation booksarch-handbookscsichapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookl10nchapter --threshold 100 --mt weblate documentation booksdevelopers-handbookl10nchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primermanual-pageschapter --threshold 100 --mt weblate documentation booksfdp-primermanual-pageschapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookbibliographychapter --threshold 100 --mt weblate documentation booksarch-handbookbibliographychapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookkobjchapter --threshold 100 --mt weblate documentation booksarch-handbookkobjchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookisachapter --threshold 100 --mt weblate documentation booksarch-handbookisachapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooksysinitchapter --threshold 100 --mt weblate documentation booksarch-handbooksysinitchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbook_index --threshold 100 --mt weblate documentation booksporters-handbook_index pt_BR
weblate auto_translate --source documentation/glossary --threshold 100 --mt weblate documentation glossary pt_BR
weblate auto_translate --source documentation/booksarch-handbooksoundchapter --threshold 100 --mt weblate documentation booksarch-handbooksoundchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookpccardchapter --threshold 100 --mt weblate documentation booksarch-handbookpccardchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookvmchapter --threshold 100 --mt weblate documentation booksarch-handbookvmchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooknewbuschapter --threshold 100 --mt weblate documentation booksarch-handbooknewbuschapter pt_BR
weblate auto_translate --source documentation/booksdesign-44bsd_index --threshold 100 --mt weblate documentation booksdesign-44bsd_index pt_BR
weblate auto_translate --source documentation/booksporters-handbookplistchapter --threshold 100 --mt weblate documentation booksporters-handbookplistchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookflavorschapter --threshold 100 --mt weblate documentation booksporters-handbookflavorschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookkeeping-upchapter --threshold 100 --mt weblate documentation booksporters-handbookkeeping-upchapter pt_BR
weblate auto_translate --source documentation/bookshandbookpartv --threshold 100 --mt weblate documentation bookshandbookpartv pt_BR
weblate auto_translate --source documentation/bookshandbooknetwork-servers_index --threshold 100 --mt weblate documentation bookshandbooknetwork-servers_index pt_BR
weblate auto_translate --source documentation/bookshandbookbibliography_index --threshold 100 --mt weblate documentation bookshandbookbibliography_index pt_BR
weblate auto_translate --source documentation/bookshandbookserialcomms_index --threshold 100 --mt weblate documentation bookshandbookserialcomms_index pt_BR
weblate auto_translate --source documentation/bookshandbookconfig_index --threshold 100 --mt weblate documentation bookshandbookconfig_index pt_BR
weblate auto_translate --source documentation/bookshandbookl10n_index --threshold 100 --mt weblate documentation bookshandbookl10n_index pt_BR
weblate auto_translate --source documentation/bookshandbookeresources_index --threshold 100 --mt weblate documentation bookshandbookeresources_index pt_BR
weblate auto_translate --source documentation/bookshandbookaudit_index --threshold 100 --mt weblate documentation bookshandbookaudit_index pt_BR
weblate auto_translate --source documentation/bookshandbookcutting-edge_index --threshold 100 --mt weblate documentation bookshandbookcutting-edge_index pt_BR
weblate auto_translate --source documentation/bookshandbookmail_index --threshold 100 --mt weblate documentation bookshandbookmail_index pt_BR
weblate auto_translate --source documentation/bookshandbookpreface_index --threshold 100 --mt weblate documentation bookshandbookpreface_index pt_BR
weblate auto_translate --source documentation/articles_index --threshold 100 --mt weblate documentation articles_index pt_BR
weblate auto_translate --source documentation/articlesproblem-reports_index --threshold 100 --mt weblate documentation articlesproblem-reports_index pt_BR
weblate auto_translate --source documentation/articlesgeom-class_index --threshold 100 --mt weblate documentation articlesgeom-class_index pt_BR
weblate auto_translate --source documentation/articlesfreebsd-questions_index --threshold 100 --mt weblate documentation articlesfreebsd-questions_index pt_BR
weblate auto_translate --source documentation/articlescontributing_index --threshold 100 --mt weblate documentation articlescontributing_index pt_BR
weblate auto_translate --source documentation/articleshubs_index --threshold 100 --mt weblate documentation articleshubs_index pt_BR
weblate auto_translate --source documentation/articlesreleng_index --threshold 100 --mt weblate documentation articlesreleng_index pt_BR
weblate auto_translate --source documentation/articlesleap-seconds_index --threshold 100 --mt weblate documentation articlesleap-seconds_index pt_BR
weblate auto_translate --source documentation/articlesbuilding-products_index --threshold 100 --mt weblate documentation articlesbuilding-products_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-386bsd --threshold 100 --mt weblate documentation articlescontributorscontrib-386bsd pt_BR
weblate auto_translate --source documentation/articlesfreebsd-update-server_index --threshold 100 --mt weblate documentation articlesfreebsd-update-server_index pt_BR
weblate auto_translate --source documentation/articlesipsec-must_index --threshold 100 --mt weblate documentation articlesipsec-must_index pt_BR
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
weblate auto_translate --source documentation/books_index --mode fuzzy --mt weblate documentation books_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookkernelbuildchapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookkernelbuildchapter pt_BR
weblate auto_translate --source documentation/articlesbsdl-gpl --mode fuzzy --mt weblate documentation articlesbsdl-gpl pt_BR
weblate auto_translate --source documentation/booksarch-handbookjailchapter --mode fuzzy --mt weblate documentation booksarch-handbookjailchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookusbchapter --mode fuzzy --mt weblate documentation booksarch-handbookusbchapter pt_BR
weblate auto_translate --source documentation/booksfaq_index --mode fuzzy --mt weblate documentation booksfaq_index pt_BR
weblate auto_translate --source documentation/booksarch-handbookpcichapter --mode fuzzy --mt weblate documentation booksarch-handbookpcichapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookbootchapter --mode fuzzy --mt weblate documentation booksarch-handbookbootchapter pt_BR
weblate auto_translate --source documentation/booksdev-model_index --mode fuzzy --mt weblate documentation booksdev-model_index pt_BR
weblate auto_translate --source documentation/booksfdp-primerstructurechapter --mode fuzzy --mt weblate documentation booksfdp-primerstructurechapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooksmpchapter --mode fuzzy --mt weblate documentation booksarch-handbooksmpchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookintroductionchapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookintroductionchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerexampleschapter --mode fuzzy --mt weblate documentation booksfdp-primerexampleschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primeroverviewchapter --mode fuzzy --mt weblate documentation booksfdp-primeroverviewchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookdriverbasicschapter --mode fuzzy --mt weblate documentation booksarch-handbookdriverbasicschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbook_index --mode fuzzy --mt weblate documentation booksdevelopers-handbook_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooktoolschapter --mode fuzzy --mt weblate documentation booksdevelopers-handbooktoolschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerdoc-buildchapter --mode fuzzy --mt weblate documentation booksfdp-primerdoc-buildchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerwriting-stylechapter --mode fuzzy --mt weblate documentation booksfdp-primerwriting-stylechapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerprefacechapter --mode fuzzy --mt weblate documentation booksfdp-primerprefacechapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookmacchapter --mode fuzzy --mt weblate documentation booksarch-handbookmacchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookkerneldebugchapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookkerneldebugchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerworking-copychapter --mode fuzzy --mt weblate documentation booksfdp-primerworking-copychapter pt_BR
weblate auto_translate --source documentation/booksfdp-primertoolschapter --mode fuzzy --mt weblate documentation booksfdp-primertoolschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerasciidoctor-primerchapter --mode fuzzy --mt weblate documentation booksfdp-primerasciidoctor-primerchapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookpolicieschapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookpolicieschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookipv6chapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookipv6chapter pt_BR
weblate auto_translate --source documentation/booksfdp-primersee-alsochapter --mode fuzzy --mt weblate documentation booksfdp-primersee-alsochapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerpo-translationschapter --mode fuzzy --mt weblate documentation booksfdp-primerpo-translationschapter pt_BR
weblate auto_translate --source documentation/booksfdp-primerrosettachapter --mode fuzzy --mt weblate documentation booksfdp-primerrosettachapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookbibliographychapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookbibliographychapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooksecurechapter --mode fuzzy --mt weblate documentation booksdevelopers-handbooksecurechapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooksocketschapter --mode fuzzy --mt weblate documentation booksdevelopers-handbooksocketschapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookx86chapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookx86chapter pt_BR
weblate auto_translate --source documentation/booksfdp-primereditor-configchapter --mode fuzzy --mt weblate documentation booksfdp-primereditor-configchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primertranslationschapter --mode fuzzy --mt weblate documentation booksfdp-primertranslationschapter pt_BR
weblate auto_translate --source documentation/bookshandbookbook --mode fuzzy --mt weblate documentation bookshandbookbook pt_BR
weblate auto_translate --source documentation/booksporters-handbookupgradingchapter --mode fuzzy --mt weblate documentation booksporters-handbookupgradingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookversionschapter --mode fuzzy --mt weblate documentation booksporters-handbookversionschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-samplemchapter --mode fuzzy --mt weblate documentation booksporters-handbookporting-samplemchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-whychapter --mode fuzzy --mt weblate documentation booksporters-handbookporting-whychapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooksecuritychapter --mode fuzzy --mt weblate documentation booksporters-handbooksecuritychapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookquick-portingchapter --mode fuzzy --mt weblate documentation booksporters-handbookquick-portingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookmakefileschapter --mode fuzzy --mt weblate documentation booksporters-handbookmakefileschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooktestingchapter --mode fuzzy --mt weblate documentation booksporters-handbooktestingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookpkg-fileschapter --mode fuzzy --mt weblate documentation booksporters-handbookpkg-fileschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbooknew-portchapter --mode fuzzy --mt weblate documentation booksporters-handbooknew-portchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookporting-dadschapter --mode fuzzy --mt weblate documentation booksporters-handbookporting-dadschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookorderchapter --mode fuzzy --mt weblate documentation booksporters-handbookorderchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookuseschapter --mode fuzzy --mt weblate documentation booksporters-handbookuseschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookslow-portingchapter --mode fuzzy --mt weblate documentation booksporters-handbookslow-portingchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookspecialchapter --mode fuzzy --mt weblate documentation booksporters-handbookspecialchapter pt_BR
weblate auto_translate --source documentation/bookshandbookpartii --mode fuzzy --mt weblate documentation bookshandbookpartii pt_BR
weblate auto_translate --source documentation/bookshandbook_index --mode fuzzy --mt weblate documentation bookshandbook_index pt_BR
weblate auto_translate --source documentation/bookshandbookpartiii --mode fuzzy --mt weblate documentation bookshandbookpartiii pt_BR
weblate auto_translate --source documentation/bookshandbookpartiv --mode fuzzy --mt weblate documentation bookshandbookpartiv pt_BR
weblate auto_translate --source documentation/bookshandbookparti --mode fuzzy --mt weblate documentation bookshandbookparti pt_BR
weblate auto_translate --source documentation/bookshandbookprinting_index --mode fuzzy --mt weblate documentation bookshandbookprinting_index pt_BR
weblate auto_translate --source documentation/bookshandbooksecurity_index --mode fuzzy --mt weblate documentation bookshandbooksecurity_index pt_BR
weblate auto_translate --source documentation/bookshandbookwine_index --mode fuzzy --mt weblate documentation bookshandbookwine_index pt_BR
weblate auto_translate --source documentation/bookshandbookgeom_index --mode fuzzy --mt weblate documentation bookshandbookgeom_index pt_BR
weblate auto_translate --source documentation/bookshandbookmirrors_index --mode fuzzy --mt weblate documentation bookshandbookmirrors_index pt_BR
weblate auto_translate --source documentation/bookshandbookkernelconfig_index --mode fuzzy --mt weblate documentation bookshandbookkernelconfig_index pt_BR
weblate auto_translate --source documentation/bookshandbookvirtualization_index --mode fuzzy --mt weblate documentation bookshandbookvirtualization_index pt_BR
weblate auto_translate --source documentation/bookshandbookintroduction_index --mode fuzzy --mt weblate documentation bookshandbookintroduction_index pt_BR
weblate auto_translate --source documentation/bookshandbookmultimedia_index --mode fuzzy --mt weblate documentation bookshandbookmultimedia_index pt_BR
weblate auto_translate --source documentation/bookshandbookdesktop_index --mode fuzzy --mt weblate documentation bookshandbookdesktop_index pt_BR
weblate auto_translate --source documentation/bookshandbookboot_index --mode fuzzy --mt weblate documentation bookshandbookboot_index pt_BR
weblate auto_translate --source documentation/bookshandbookpgpkeys_index --mode fuzzy --mt weblate documentation bookshandbookpgpkeys_index pt_BR
weblate auto_translate --source documentation/bookshandbookadvanced-networking_index --mode fuzzy --mt weblate documentation bookshandbookadvanced-networking_index pt_BR
weblate auto_translate --source documentation/bookshandbookfirewalls_index --mode fuzzy --mt weblate documentation bookshandbookfirewalls_index pt_BR
weblate auto_translate --source documentation/bookshandbookbsdinstall_index --mode fuzzy --mt weblate documentation bookshandbookbsdinstall_index pt_BR
weblate auto_translate --source documentation/bookshandbookfilesystems_index --mode fuzzy --mt weblate documentation bookshandbookfilesystems_index pt_BR
weblate auto_translate --source documentation/bookshandbooklinuxemu_index --mode fuzzy --mt weblate documentation bookshandbooklinuxemu_index pt_BR
weblate auto_translate --source documentation/bookshandbookbasics_index --mode fuzzy --mt weblate documentation bookshandbookbasics_index pt_BR
weblate auto_translate --source documentation/bookshandbookmac_index --mode fuzzy --mt weblate documentation bookshandbookmac_index pt_BR
weblate auto_translate --source documentation/bookshandbookx11_index --mode fuzzy --mt weblate documentation bookshandbookx11_index pt_BR
weblate auto_translate --source documentation/bookshandbookdtrace_index --mode fuzzy --mt weblate documentation bookshandbookdtrace_index pt_BR
weblate auto_translate --source documentation/bookshandbookdisks_index --mode fuzzy --mt weblate documentation bookshandbookdisks_index pt_BR
weblate auto_translate --source documentation/bookshandbookports_index --mode fuzzy --mt weblate documentation bookshandbookports_index pt_BR
weblate auto_translate --source documentation/bookshandbookppp-and-slip_index --mode fuzzy --mt weblate documentation bookshandbookppp-and-slip_index pt_BR
weblate auto_translate --source documentation/bookshandbookzfs_index --mode fuzzy --mt weblate documentation bookshandbookzfs_index pt_BR
weblate auto_translate --source documentation/bookshandbookusb-device-mode_index --mode fuzzy --mt weblate documentation bookshandbookusb-device-mode_index pt_BR
weblate auto_translate --source documentation/bookshandbookjails_index --mode fuzzy --mt weblate documentation bookshandbookjails_index pt_BR
weblate auto_translate --source documentation/articlesexplaining-bsd_index --mode fuzzy --mt weblate documentation articlesexplaining-bsd_index pt_BR
weblate auto_translate --source documentation/articlesnew-users_index --mode fuzzy --mt weblate documentation articlesnew-users_index pt_BR
weblate auto_translate --source documentation/articlesvinum_index --mode fuzzy --mt weblate documentation articlesvinum_index pt_BR
weblate auto_translate --source documentation/articlesvm-design_index --mode fuzzy --mt weblate documentation articlesvm-design_index pt_BR
weblate auto_translate --source documentation/articlesgjournal-desktop_index --mode fuzzy --mt weblate documentation articlesgjournal-desktop_index pt_BR
weblate auto_translate --source documentation/articleslinux-users_index --mode fuzzy --mt weblate documentation articleslinux-users_index pt_BR
weblate auto_translate --source documentation/articlessolid-state_index --mode fuzzy --mt weblate documentation articlessolid-state_index pt_BR
weblate auto_translate --source documentation/articlesnanobsd_index --mode fuzzy --mt weblate documentation articlesnanobsd_index pt_BR
weblate auto_translate --source documentation/articlescommitters-guide_index --mode fuzzy --mt weblate documentation articlescommitters-guide_index pt_BR
weblate auto_translate --source documentation/articlesfonts_index --mode fuzzy --mt weblate documentation articlesfonts_index pt_BR
weblate auto_translate --source documentation/articlespr-guidelines_index --mode fuzzy --mt weblate documentation articlespr-guidelines_index pt_BR
weblate auto_translate --source documentation/articlesport-mentor-guidelines_index --mode fuzzy --mt weblate documentation articlesport-mentor-guidelines_index pt_BR
weblate auto_translate --source documentation/articlespgpkeys_index --mode fuzzy --mt weblate documentation articlespgpkeys_index pt_BR
weblate auto_translate --source documentation/articlespam_index --mode fuzzy --mt weblate documentation articlespam_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-corealumni --mode fuzzy --mt weblate documentation articlescontributorscontrib-corealumni pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-committers --mode fuzzy --mt weblate documentation articlescontributorscontrib-committers pt_BR
weblate auto_translate --source documentation/articlescontributors_index --mode fuzzy --mt weblate documentation articlescontributors_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-additional --mode fuzzy --mt weblate documentation articlescontributorscontrib-additional pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-develalumni --mode fuzzy --mt weblate documentation articlescontributorscontrib-develalumni pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-develinmemoriam --mode fuzzy --mt weblate documentation articlescontributorscontrib-develinmemoriam pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-portmgralumni --mode fuzzy --mt weblate documentation articlescontributorscontrib-portmgralumni pt_BR
weblate auto_translate --source documentation/articleslinux-emulation_index --mode fuzzy --mt weblate documentation articleslinux-emulation_index pt_BR
weblate auto_translate --source documentation/articlesserial-uart_index --mode fuzzy --mt weblate documentation articlesserial-uart_index pt_BR
weblate auto_translate --source documentation/articlesfreebsd-releng_index --mode fuzzy --mt weblate documentation articlesfreebsd-releng_index pt_BR
weblate auto_translate --source documentation/articlesrc-scripting_index --mode fuzzy --mt weblate documentation articlesrc-scripting_index pt_BR
weblate auto_translate --source documentation/articlesldap-auth_index --mode fuzzy --mt weblate documentation articlesldap-auth_index pt_BR
weblate auto_translate --source documentation/articlesmailing-list-faq_index --mode fuzzy --mt weblate documentation articlesmailing-list-faq_index pt_BR
weblate auto_translate --source documentation/articlescups_index --mode fuzzy --mt weblate documentation articlescups_index pt_BR
weblate auto_translate --source documentation/articlesremote-install_index --mode fuzzy --mt weblate documentation articlesremote-install_index pt_BR
weblate auto_translate --source documentation/articlesfiltering-bridges_index --mode fuzzy --mt weblate documentation articlesfiltering-bridges_index pt_BR
weblate auto_translate --source documentation/booksarch-handbooklockingchapter --mode fuzzy --mt weblate documentation booksarch-handbooklockingchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primer_index --mode fuzzy --mt weblate documentation booksfdp-primer_index pt_BR
weblate auto_translate --source documentation/booksarch-handbook_index --mode fuzzy --mt weblate documentation booksarch-handbook_index pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbooktestingchapter --mode fuzzy --mt weblate documentation booksdevelopers-handbooktestingchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookscsichapter --mode fuzzy --mt weblate documentation booksarch-handbookscsichapter pt_BR
weblate auto_translate --source documentation/booksdevelopers-handbookl10nchapter --mode fuzzy --mt weblate documentation booksdevelopers-handbookl10nchapter pt_BR
weblate auto_translate --source documentation/booksfdp-primermanual-pageschapter --mode fuzzy --mt weblate documentation booksfdp-primermanual-pageschapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookbibliographychapter --mode fuzzy --mt weblate documentation booksarch-handbookbibliographychapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookkobjchapter --mode fuzzy --mt weblate documentation booksarch-handbookkobjchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookisachapter --mode fuzzy --mt weblate documentation booksarch-handbookisachapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooksysinitchapter --mode fuzzy --mt weblate documentation booksarch-handbooksysinitchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbook_index --mode fuzzy --mt weblate documentation booksporters-handbook_index pt_BR
weblate auto_translate --source documentation/glossary --mode fuzzy --mt weblate documentation glossary pt_BR
weblate auto_translate --source documentation/booksarch-handbooksoundchapter --mode fuzzy --mt weblate documentation booksarch-handbooksoundchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookpccardchapter --mode fuzzy --mt weblate documentation booksarch-handbookpccardchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbookvmchapter --mode fuzzy --mt weblate documentation booksarch-handbookvmchapter pt_BR
weblate auto_translate --source documentation/booksarch-handbooknewbuschapter --mode fuzzy --mt weblate documentation booksarch-handbooknewbuschapter pt_BR
weblate auto_translate --source documentation/booksdesign-44bsd_index --mode fuzzy --mt weblate documentation booksdesign-44bsd_index pt_BR
weblate auto_translate --source documentation/booksporters-handbookplistchapter --mode fuzzy --mt weblate documentation booksporters-handbookplistchapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookflavorschapter --mode fuzzy --mt weblate documentation booksporters-handbookflavorschapter pt_BR
weblate auto_translate --source documentation/booksporters-handbookkeeping-upchapter --mode fuzzy --mt weblate documentation booksporters-handbookkeeping-upchapter pt_BR
weblate auto_translate --source documentation/bookshandbookpartv --mode fuzzy --mt weblate documentation bookshandbookpartv pt_BR
weblate auto_translate --source documentation/bookshandbooknetwork-servers_index --mode fuzzy --mt weblate documentation bookshandbooknetwork-servers_index pt_BR
weblate auto_translate --source documentation/bookshandbookbibliography_index --mode fuzzy --mt weblate documentation bookshandbookbibliography_index pt_BR
weblate auto_translate --source documentation/bookshandbookserialcomms_index --mode fuzzy --mt weblate documentation bookshandbookserialcomms_index pt_BR
weblate auto_translate --source documentation/bookshandbookconfig_index --mode fuzzy --mt weblate documentation bookshandbookconfig_index pt_BR
weblate auto_translate --source documentation/bookshandbookl10n_index --mode fuzzy --mt weblate documentation bookshandbookl10n_index pt_BR
weblate auto_translate --source documentation/bookshandbookeresources_index --mode fuzzy --mt weblate documentation bookshandbookeresources_index pt_BR
weblate auto_translate --source documentation/bookshandbookaudit_index --mode fuzzy --mt weblate documentation bookshandbookaudit_index pt_BR
weblate auto_translate --source documentation/bookshandbookcutting-edge_index --mode fuzzy --mt weblate documentation bookshandbookcutting-edge_index pt_BR
weblate auto_translate --source documentation/bookshandbookmail_index --mode fuzzy --mt weblate documentation bookshandbookmail_index pt_BR
weblate auto_translate --source documentation/bookshandbookpreface_index --mode fuzzy --mt weblate documentation bookshandbookpreface_index pt_BR
weblate auto_translate --source documentation/articles_index --mode fuzzy --mt weblate documentation articles_index pt_BR
weblate auto_translate --source documentation/articlesproblem-reports_index --mode fuzzy --mt weblate documentation articlesproblem-reports_index pt_BR
weblate auto_translate --source documentation/articlesgeom-class_index --mode fuzzy --mt weblate documentation articlesgeom-class_index pt_BR
weblate auto_translate --source documentation/articlesfreebsd-questions_index --mode fuzzy --mt weblate documentation articlesfreebsd-questions_index pt_BR
weblate auto_translate --source documentation/articlescontributing_index --mode fuzzy --mt weblate documentation articlescontributing_index pt_BR
weblate auto_translate --source documentation/articleshubs_index --mode fuzzy --mt weblate documentation articleshubs_index pt_BR
weblate auto_translate --source documentation/articlesreleng_index --mode fuzzy --mt weblate documentation articlesreleng_index pt_BR
weblate auto_translate --source documentation/articlesleap-seconds_index --mode fuzzy --mt weblate documentation articlesleap-seconds_index pt_BR
weblate auto_translate --source documentation/articlesbuilding-products_index --mode fuzzy --mt weblate documentation articlesbuilding-products_index pt_BR
weblate auto_translate --source documentation/articlescontributorscontrib-386bsd --mode fuzzy --mt weblate documentation articlescontributorscontrib-386bsd pt_BR
weblate auto_translate --source documentation/articlesfreebsd-update-server_index --mode fuzzy --mt weblate documentation articlesfreebsd-update-server_index pt_BR
weblate auto_translate --source documentation/articlesipsec-must_index --mode fuzzy --mt weblate documentation articlesipsec-must_index pt_BR
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment