Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n: fix duplicate messsages in po files #4722

Merged
merged 5 commits into from
Nov 21, 2024

Commits on Nov 19, 2024

  1. i18n: fix duplicate messsages in po files

    This PR deduplicates the message files. I used the following command (inspired by @HuidaeCho in OSGeo#1396 (comment)):
    
    ```
    cd locale/po/
    for pofile in $(ls grass*.po); do
        sed -n '{/^#~/!{p}}' ${pofile} > ${pofile}.tmp
        msguniq --use-first ${pofile}.tmp > ${pofile}
        rm -f ${pofile}.tmp
    done
    ```
    neteler committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    a3e1b73 View commit details
    Browse the repository at this point in the history
  2. remove cruft

    neteler committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    3ccf3e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. Revert "i18n: fix duplicate messsages in po files"

    This reverts commit a3e1b73.
    neteler committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    6ddbbf0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7e596dc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7b1428f View commit details
    Browse the repository at this point in the history