#!/usr/bin/env python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2019, Wolf Vollprecht <w.vollprecht@gmail.com>
# This program is free software: you can redistribute it and/or modify it 
# under the terms of the GNU General Public License version 3, as published 
# by the Free Software Foundation.
# 
# This program is distributed in the hope that it will be useful, but 
# WITHOUT ANY WARRANTY; without even the implied warranties of 
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
# PURPOSE.  See the GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along 
# with this program.  If not, see <http://www.gnu.org/licenses/>.
### END LICENSE

### DO NOT EDIT THIS FILE ###

import sys
import os

import gettext
import locale

_LOCAL = False

if _LOCAL:
    # In the local use case, use apostrophe module from the sourcetree
    sys.path.insert(1, '/usr/lib/python3.13/site-packages')

    # In the local use case the installed schemas go in <builddir>/data
    os.environ["XDG_DATA_DIRS"] = ':' + os.environ.get("XDG_DATA_DIRS", "")

from gi.repository import Gio

import apostrophe

localedir = '/usr/share/locale'
pkgdatadir = '/usr/share/apostrophe'

# L10n
locale.textdomain('apostrophe')
locale.bindtextdomain('apostrophe', localedir)
gettext.textdomain('apostrophe')
gettext.bindtextdomain('apostrophe', localedir)


def run_application():
    from apostrophe.application import Application

    app = Application('org.gnome.gitlab.somas.Apostrophe')
    return app.run(sys.argv)


def main():
    resource = Gio.resource_load(
        os.path.join(pkgdatadir, 'apostrophe.gresource'))
    Gio.Resource._register(resource)

    return run_application()


if __name__ == '__main__':
    if _LOCAL:
        print('Running from source tree, using local files.')
    sys.exit(main())
