File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
dist/esm/testing/workers/checkers Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 44
55Replace ` Provider ` by ` Factory ` in Dependency Injection (` inversify ` ). If you're using ` bindProvider ` , simply replace it by ` bindFactory ` .
66
7+ Allow '...' at the end of a uc label. Although a label ending with '.' is odd, one ending with '...' is not (e.g. "Connect...").
8+
79See all the changes here : https://github.com/c100k/libmodulor/compare/v0.27.0...master
810
911## v0.27.0 (2026-02-09)
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ let AppI18nChecker = class AppI18nChecker {
4141 if ( ! matches ) {
4242 this . output . errors . push ( ERR_I18N_KEY_INVALID ( key ) ) ;
4343 }
44- if ( key . endsWith ( '_label' ) && translation . endsWith ( '.' ) ) {
44+ if ( key . endsWith ( '_label' ) &&
45+ translation . endsWith ( '.' ) &&
46+ ! translation . endsWith ( '...' ) ) {
4547 this . output . errors . push ( ERR_I18N_LABEL_NO_DOT ( key ) ) ;
4648 }
4749 }
You can’t perform that action at this time.
0 commit comments