File: basic_settings.rb

package info (click to toggle)
mikutter 5.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,780 kB
  • sloc: ruby: 22,912; sh: 186; makefile: 21
file content (33 lines) | stat: -rw-r--r-- 1,379 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
31
32
33
# -*- 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') % '2024',
      comments: _("全てのミク廃、そしてマイクロブログ中毒者へ贈る、至高のMastodonクライアントを目指すMastodonクライアント。\n略して至高のMastodonクライアント。\n圧倒的なかわいさではないか我がミクは\n\nこのソフトウェアは %{license} によって浄化されています。") % { license: 'MIT License' },
      license: begin
        file_get_contents('../LICENSE')
      rescue StandardError
        nil
      end,
      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