8000 Revert "Fix build with Boost 1.87 that removes deprecated asio methods" · sc0w/amule@3888469 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Revert "Fix build with Boost 1.87 that removes deprecated asio methods" #45

Revert "Fix build with Boost 1.87 that removes deprecated asio methods"

Revert "Fix build with Boost 1.87 that removes deprecated asio methods" #45

Workflow file for this run

name: I18n CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
pofiles:
name: Translation checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Installing tools
run: sudo apt-get install gettext
- name: Checking .po files
run: |
for po in po/*.po docs/man/po/*.po; do
msgfmt --check --statistics --verbose $po
done
0