File: basic_settings.rb

package info (click to toggle)
mikutter 4.1.3%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,260 kB
  • sloc: ruby: 20,126; sh: 183; makefile: 19
file content (30 lines) | stat: -rw-r--r-- 1,359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- coding: utf-8 -*-

Plugin::create(:basic_settings) do
  settings(_('基本設定')) do
    boolean _('リプライ元をサーバに問い合わせて取得する'), :retrieve_force_mumbleparent

    about (_("%s について") % Environment::NAME), {
      :name => Environment::NAME,
      :version => Environment::VERSION.to_s,
      :copyright => _('2009-%s Toshiaki Asai') % '2021',
      :comments => _("全てのミク廃、そしてマイクロブログ中毒者へ贈る、至高のMastodonクライアントを目指すMastodonクライアント。\n略して至高のMastodonクライアント。\n圧倒的なかわいさではないか我がミクは\n\nこのソフトウェアは %{license} によって浄化されています。") % {license: 'MIT License'},
      :license => (file_get_contents('../LICENSE') rescue nil),
      :website => _('https://mikutter.hachune.net/'),
      :logo => Skin.photo('icon.png'),
      :authors => %w[
        @toshi_a@social.mikutter.hachune.net
        Phenomer
        @osa_k@social.mikutter.hachune.net
        katsyoshi
        @ahiru@social.mikutter.hachune.net
        @cobodo@mstdn.kanagu.info
        @shibafu528@social.mikutter.hachune.net
        @yuntan_t@mstdn.maud.io
      ],
      :artists => ['toshi_a', 'soramame_bscl', 'seibe2'],
      :documenters => ['toshi_a']
    }

  end
end