- ServerName **YOUR IP ADDRESS/DOMAIN**
+ ServerName monica.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/monica/public
diff --git a/phpstan.neon b/phpstan.neon
index be6ad5c12af..1820375adc8 100644
--- a/phpstan.neon
+++ b/phpstan.neon
@@ -48,3 +48,5 @@ parameters:
- */Http/Resources/**/*.php
- */ExportResources/**/*.php
- */ExportResources/*.php
+ - */Console/Commands/ImportAccounts.php
+
diff --git a/resources/lang/he/app.php b/resources/lang/he/app.php
index 4929107b682..5605183f74b 100644
--- a/resources/lang/he/app.php
+++ b/resources/lang/he/app.php
@@ -180,10 +180,10 @@
'relationship_type_lovedby_female_with_name' => 'מאהבת סודית של :name',
'relationship_type_lovedby_male_with_name' => 'מאהב סודי של :name',
- 'relationship_type_ex' => 'ex-partner',
+ 'relationship_type_ex' => 'שותף לשעבר לחיים',
'relationship_type_ex_female' => 'חברה לשעבר',
'relationship_type_ex_male' => 'חבר לשעבר',
- 'relationship_type_ex_with_name' => ':name’s ex-partner',
+ 'relationship_type_ex_with_name' => 'שותף לחיים לשעבר של :name',
'relationship_type_ex_female_with_name' => 'חברה לשעבר של :name',
'relationship_type_ex_male_with_name' => 'חבר לשעבר של :name',
@@ -222,17 +222,17 @@
'relationship_type_sibling_female_with_name' => 'אחות של :name',
'relationship_type_sibling_male_with_name' => 'אח של :name',
- 'relationship_type_grandparent' => 'grandparent',
+ 'relationship_type_grandparent' => 'סב',
'relationship_type_grandparent_female' => 'סבתא',
'relationship_type_grandparent_male' => 'סבא',
- 'relationship_type_grandparent_with_name' => ':name’s grandparent',
+ 'relationship_type_grandparent_with_name' => 'הסבא או הסבתא של :name',
'relationship_type_grandparent_female_with_name' => 'סבתא של :name',
'relationship_type_grandparent_male_with_name' => 'סבא של :name',
'relationship_type_grandchild' => 'נכד/ה',
'relationship_type_grandchild_female' => 'נכדה',
'relationship_type_grandchild_male' => 'נכד',
- 'relationship_type_grandchild_with_name' => ':name’s grandchild',
+ 'relationship_type_grandchild_with_name' => 'הנכד או הנכדה של :name',
'relationship_type_grandchild_female_with_name' => 'נכדה של :name',
'relationship_type_grandchild_male_with_name' => 'נכד של :name',
@@ -257,10 +257,10 @@
'relationship_type_cousin_female_with_name' => 'בת דודה של :name',
'relationship_type_cousin_male_with_name' => 'בן דוד של :name',
- 'relationship_type_godfather' => 'godparent',
+ 'relationship_type_godfather' => 'אפוטרופוס',
'relationship_type_godfather_female' => 'סנדקית',
'relationship_type_godfather_male' => 'סנדק',
- 'relationship_type_godfather_with_name' => ':name’s godparent',
+ 'relationship_type_godfather_with_name' => 'האפוטרופוס/ית של :name',
'relationship_type_godfather_female_with_name' => 'הסנדקית של :name',
'relationship_type_godfather_male_with_name' => 'הסנדק של :name',
diff --git a/resources/lang/he/settings.php b/resources/lang/he/settings.php
index 60cabc650a0..6beab18117b 100644
--- a/resources/lang/he/settings.php
+++ b/resources/lang/he/settings.php
@@ -42,7 +42,7 @@
'export_title_json' => 'ייצוא ל־Json',
'export_submitted' => 'הייצוא שלך הוגש, הוא יהיה זמין בעוד מספר רגעים…',
'export_json_explanation' => 'הנתונים שלך מיוצאים בתצורת Json למטרות גיבוי.',
- 'export_json_beta' => 'Json export is in preview mode. Tell us what you think about it:',
+ 'export_json_beta' => 'ייצוא Json הוא במצב תצוגה מקדימה. נא לספר לנו מה דעתך עליו:',
'export_json_cta' => 'ייצוא ל־Json',
'export_header_type' => 'סוג',
'export_header_timestamp' => 'מועד יצירה',
diff --git a/resources/sass/people.scss b/resources/sass/people.scss
index 1321115c45a..3e3bc6f03da 100644
--- a/resources/sass/people.scss
+++ b/resources/sass/people.scss
@@ -41,7 +41,8 @@
position: absolute;
}
- .number-contacts-per-tag {
+ .number-contacts-per-tag,
+ .number-contacts-without-tag {
@if $htmldir == ltr {
float: right;
} @else {
@@ -49,6 +50,9 @@
}
}
}
+ .number-contacts-without-tag{
+ font-size: 1rem;
+ }
}
.list {
diff --git a/resources/views/journal/add.blade.php b/resources/views/journal/add.blade.php
index 4c8a84ba4a1..b0846219f1a 100644
--- a/resources/views/journal/add.blade.php
+++ b/resources/views/journal/add.blade.php
@@ -39,7 +39,7 @@
-
+
diff --git a/resources/views/people/index.blade.php b/resources/views/people/index.blade.php
index a222e3e03e2..5eb0e0d5073 100644
--- a/resources/views/people/index.blade.php
+++ b/resources/views/people/index.blade.php
@@ -144,6 +144,7 @@
@if ($tagsCount->count() != 0)
{{ trans('people.people_list_untagged') }}
+ {{ trans_choice('people.people_list_contacts_per_tags', $contactsWithoutTagsCount) }}
@endif