Skip to content
Snippets Groups Projects
Commit 96268e76 authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Fix wording on admin instances view, fix typos in language detector spec (#2106)

parent c6a4ab3b
No related branches found
No related tags found
No related merge requests found
......@@ -115,9 +115,9 @@ en:
title: Domain Blocks
undo: Undo
instances:
account_count: Accounts
domain_name: Domain name
title: Instances
account_count: Known accounts
domain_name: Domain
title: Known Instances
pubsubhubbub:
callback_url: Callback URL
confirmed: Confirmed
......
# frozen_string_literal: true
require 'rails_helper'
describe LanguageDetector do
describe 'to_iso_s' do
it 'detects english language' do
string = 'Hello and welcome to mastadon'
string = 'Hello and welcome to mastodon'
result = described_class.new(string).to_iso_s
expect(result).to eq :en
end
it 'detects spanish language' do
string = 'Obtener un Hola y bienvenidos a Mastadon'
string = 'Obtener un Hola y bienvenidos a Mastodon'
result = described_class.new(string).to_iso_s
expect(result).to eq :es
end
describe 'when language cant be detected' do
describe 'when language can\'t be detected' do
it 'confirm language engine cant detect' do
result = WhatLanguage.new(:all).language_iso('')
expect(result).to be_nil
......@@ -26,17 +25,17 @@ describe LanguageDetector do
describe 'with an account' do
it 'uses the account locale when present' do
user = double(:user, locale: 'fr')
user = double(:user, locale: 'fr')
account = double(:account, user: user)
result = described_class.new('', account).to_iso_s
result = described_class.new('', account).to_iso_s
expect(result).to eq :fr
end
it 'uses default locale when account is present but has no locale' do
user = double(:user, locale: nil)
user = double(:user, locale: nil)
account = double(:accunt, user: user)
result = described_class.new('', account).to_iso_s
result = described_class.new('', account).to_iso_s
expect(result).to eq :en
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment