File: tools.js

package info (click to toggle)
xnote 4.1.12-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 788 kB
  • sloc: javascript: 5,779; makefile: 22
file content (12 lines) | stat: -rw-r--r-- 305 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
function translateURL(url, anchor) {
    if (typeof (anchor) == 'undefined') anchor = '';

    // Skip translation if a absolute path is given.
    let rv = url.startsWith("/")
      ? null
      : browser.i18n.getMessage(url);

    return rv
        ? rv + anchor
        : url + anchor;
  }