From 8198e176351541c77dbb6d8c438620e162a1a1a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=9B=D0=B5=D0=BE?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2?= <71232234+leonovk@users.noreply.github.com> Date: Fri, 3 Nov 2023 15:42:49 +0300 Subject: [PATCH] Translate error (#5) --- Gemfile.lock | 2 +- lib/boaw/version.rb | 2 +- lib/xdotool/base_error.rb | 2 +- test/lib/boaw/version_test.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index c67d4a1..e7e1811 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - boaw (0.1.0) + boaw (0.1.1) GEM remote: https://rubygems.org/ diff --git a/lib/boaw/version.rb b/lib/boaw/version.rb index b1202d7..9b3cc87 100644 --- a/lib/boaw/version.rb +++ b/lib/boaw/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Boaw - VERSION = '0.1.0' + VERSION = '0.1.1' end diff --git a/lib/xdotool/base_error.rb b/lib/xdotool/base_error.rb index 3be9699..9f0bd69 100644 --- a/lib/xdotool/base_error.rb +++ b/lib/xdotool/base_error.rb @@ -4,7 +4,7 @@ module Xdotool # default error class BaseError < StandardError def message - 'не удалось инициализировать модуль xdotool' + 'failed to initialize xdotool module' end end end diff --git a/test/lib/boaw/version_test.rb b/test/lib/boaw/version_test.rb index ef7fa9a..3e00080 100644 --- a/test/lib/boaw/version_test.rb +++ b/test/lib/boaw/version_test.rb @@ -5,6 +5,6 @@ class VersionTest < Minitest::Test def test_version - assert_equal '0.1.0', Boaw::VERSION + assert_equal '0.1.1', Boaw::VERSION end end