Murray Cumming

Results 14 issues of Murray Cumming

Translators expect to deal with only one .po file, so it's awkward that we a2po generates a separate set of po/pot files for each XML file that has translatable strings....

If my strings.xml has a string such as this: ``` This android app was developed by <a href="http://murrayc.com/">Murray Cumming<a> ``` Then the strings.pot file (and the strings-*.po files) contains this:...

Unescaped markup is apparently normal in Android strings.xml files, according to: http://developer.android.com/guide/topics/resources/string-resource.html For instance, my values/strings.xml can have this: ``` This android app was developed by Murray Cumming ``` And...

The time complexities for Shell Sort on bigocheatsheet.com are now nothing like the ones listed on the wikipedia page: https://en.wikipedia.org/wiki/Shellsort Incidentally, bigoref.com seems to have this mostly right, but not...

These commits first avoid some deprecated API, then add a GTK4 version of avahi-ui, and then make some GTK4-specific changes. I have not tested this at all and there doesn't...

enhancement
important
ci-fails
needs-rebase
needs-tests

These commits change the code in examples/ to use modern C++, specifically C++11. For instance, to use auto to avoid the verbosity of the traits and typedefs. Even if we...

I noticed that my XML comments for translators are not visible in the list of phrases.

enhancement

If I forget my password (which I have), there's no way to log in because there's no ""Forgot password?" button.

enhancement

The XML Import feature mports even strings that are marked translatable="false".

bug

When the graph is a weighted directed acyclic graph, we can use topological sort to get an O(|V| + |E|) algorithm instead of using Dikstra's O(|V|²) algorithm. Maybe this should...