Skip to content
  • Gerald Combs's avatar
    Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. · d2da4c7a
    Gerald Combs authored and AndersBroman's avatar AndersBroman committed
    Run
    
    $ gsed -i -e 's/\(tr *(.*".*\)" *UTF8_HORIZONTAL_ELLIPSIS/\1…"/' $( ag -l 'tr *\(.*" *UTF8_HORIZONTAL_ELLIPSIS' )
    $ gsed -i -e 's/\(tr *( *\)UTF8_HORIZONTAL_ELLIPSIS *"/\1"…/' $( ag -l 'tr *\( *UTF8_HORIZONTAL_ELLIPSIS *"' )
    
    in ui/qt. As discussed in #16812, the UTF8_ macros were required at one
    time because we only allowed ASCII in our source code. However, that
    requirement has since been relaxed and Qt's translation framework
    doesn't handle concatenating strings and macros very well.
    d2da4c7a