File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2424 git fetch origin
2525 # Get the diff from the push
2626 # Get only the changed lines from the diff
27- DIFF="$(git diff -U0 ${{github.event.before}} ${{github.event.after}} -- source/locale/en/*.dic | grep '^[+-]')"
27+ # DIFF="$(git diff -U0 ${{github.event.before}} ${{github.event.after}} -- source/locale/en/*.dic | grep '^[+-]')"
28+ DIFF="$(git diff -U0 release-2024.1 origin/master -- source/locale/en/*.dic | grep '^[+-]')"
2829 DOUBLE_SPACED_DIFF=$(echo "$DIFF" | sed G)
2930 # Store diff in multi-line environment variable
3031 echo "DIFF<<EOF"$'\n'"$DIFF"$'\n'EOF >> $GITHUB_OUTPUT
3839 username : ${{ secrets.EMAIL_USERNAME }}
3940 password : ${{ secrets.EMAIL_PASSWORD }}
4041 subject : " Changes detected in localisation files"
41- to : sean@nvaccess.org # nvda-l10n@nvaccess.org
42+ to : nvda-l10n@nvaccess.org
4243 from : ' "NVDA localisations" <nvda-l10n@nvaccess.org>'
4344 convert_markdown : true
4445 body : |
Original file line number Diff line number Diff line change 44
55complexSymbols:
66# identifier regexp
7+ # Sentence endings.
78. sentence ending (?<=[^\s.])\.(?=[\"'”’)\s]|$)
89! sentence ending (?<=[^\s!])\!(?=[\"'”’)\s]|$)
910? sentence ending (?<=[^\s?])\?(?=[\"'”’)\s]|$)
10- # Sentence endings.
1111# Phrase endings.
1212; phrase ending (?<=[^\s;]);(?=\s|$)
1313: phrase ending (?<=[^\s:]):(?=\s|$)
1414# Series of dots used for visual presentation, e.g. in table of contents
15- multiples . \.{4,}
15+ multiple . \.{4,}
1616# Others
1717decimal point (?<![^\d -])\.(?=\d)
1818in-word ' (?<=[^\W_])['’]
You can’t perform that action at this time.
0 commit comments