diff --git a/census/analyse.py b/census/analyse.py index 598190430..acc7909e5 100644 --- a/census/analyse.py +++ b/census/analyse.py @@ -24,49 +24,49 @@ graphHead = ''' ''' -def extractQuestion( +def extract_question( df: pd.DataFrame, - questionNumber: int, - includeAnswers: bool = True, - includeAggregates: bool = False, - removeUnderscores: bool = True + question_number: int, + include_answers: bool = True, + include_aggregates: bool = False, + remove_underscores: bool = True ) -> pd.Series: - print('Extracting question', questionNumber) - questionDf = df.filter(regex='^%s_%s(?!_writein)' % ( - questionNumber, - ('' if includeAnswers else 'aggr_') if includeAggregates else '(?!aggr)' + print('Extracting question', question_number) + question_df = df.filter(regex='^%s_%s(?!_writein)' % ( + question_number, + ('' if include_answers else 'aggr_') if include_aggregates else '(?!aggr)' )) - questionDf.columns = [ - c[len(str(questionNumber)) + 1:] + question_df.columns = [ + c[len(str(question_number)) + 1:] .replace('aggr_', 'łącznie: ') - .replace('_', ' ' if removeUnderscores else '_') + .replace('_', ' ' if remove_underscores else '_') .replace('łącznie: trans_', 'łącznie: trans*') - for c in questionDf.columns + for c in question_df.columns ] - questionDf = questionDf.sum() - questionDf = questionDf.apply(lambda x: round(100 * x / len(df), 1)) + question_df = question_df.sum() + question_df = question_df.apply(lambda x: round(100 * x / len(df), 1)) - return questionDf + return question_df -def extractQuestionSingle( +def extract_question_single( df: pd.DataFrame, - questionNumber: int, - includeAnswers: bool = True, - includeAggregates: bool = False + question_number: int, + include_answers: bool = True, + include_aggregates: bool = False ) -> pd.Series: - print('Extracting question', questionNumber) - questionDf = df.filter(regex='^%s_%s(?!_writein)' % ( - questionNumber, - ('' if includeAnswers else 'aggr_') if includeAggregates else '(?!aggr)' + print('Extracting question', question_number) + question_df = df.filter(regex='^%s_%s(?!_writein)' % ( + question_number, + ('' if include_answers else 'aggr_') if include_aggregates else '(?!aggr)' )) - questionDf = questionDf.groupby(f'{questionNumber}_')[f'{questionNumber}_'].count() - questionDf = questionDf.apply(lambda x: round(100 * x / len(df), 1)) + question_df = question_df.groupby(f'{question_number}_')[f'{question_number}_'].count() + question_df = question_df.apply(lambda x: round(100 * x / len(df), 1)) - return questionDf + return question_df -def renameIndex(data: Union[pd.DataFrame, pd.Series], new_index: List[str]) -> Union[pd.DataFrame, pd.Series]: +def rename_index(data: Union[pd.DataFrame, pd.Series], new_index: List[str]) -> Union[pd.DataFrame, pd.Series]: if type(data) is pd.Series: data = data.copy() data.columns = new_index @@ -76,7 +76,7 @@ def renameIndex(data: Union[pd.DataFrame, pd.Series], new_index: List[str]) -> U return data.set_axis(labels=new_index, axis=0) -def generateBar( +def generate_graph( data: Union[pd.DataFrame, pd.Series], group: str, name: str, @@ -87,10 +87,10 @@ def generateBar( is_multi = type(data) is pd.DataFrame and len(data.columns) > 1 if all([type(c) is str and c.startswith('łącznie: ') for c in data.index]): - data = renameIndex(data, [c.replace('łącznie: ', '') for c in data.index]) + data = rename_index(data, [c.replace('łącznie: ', '') for c in data.index]) if 'nic, używam imienia nadanego mi przez rodziców' in data.index: - data = renameIndex(data, [ + data = rename_index(data, [ 'nadane – ale przeciwna płeć', 'nadane – ale wersja unisex', 'nadane – bez zmian', @@ -105,6 +105,7 @@ def generateBar( barmode='group', template='plotly_white', ) + fig.update_layout( showlegend=is_multi, legend=dict(orientation='h', yanchor='bottom', y=1.02, xanchor='right', x=1, title=''), @@ -123,6 +124,7 @@ def generateBar( hovertemplate='%{x}
%{y:.2f}%' + ('
%{meta}' if is_multi else '') + '', meta=trace.offsetgroup, hoverlabel_font=dict(family=fontFamily, size=12), + visible='legendonly' if trace.name == 'Ogół' else True, ) file_path = outputDir / group / (name + '.html') @@ -138,14 +140,16 @@ def percent(value: int, size: int, precision: int = 2) -> float: return round(100 * value / size, precision) -def ensureEmptyDir(dir: Path) -> Path: +def ensure_empty_dir(dir: Path) -> Path: if os.path.exists(dir): shutil.rmtree(dir) os.makedirs(dir, exist_ok=True) + return dir + def analyse(group: str, df: pd.DataFrame, echo: bool = False, diffs: List[int] = None): - ensureEmptyDir(outputDir / group) + ensure_empty_dir(outputDir / group) df_plural = df[df['7_aggr_mnogie'] == 1] df_neuter = df[df['7_rodzaj neutralny'] == 1] @@ -154,45 +158,49 @@ def analyse(group: str, df: pd.DataFrame, echo: bool = False, diffs: List[int] = 'size': len(df), 'size_plural': len(df_plural), 'size_neuter': len(df_neuter), - 'age': pd.Series(buildAgesHistogram(df)), + 'age': pd.Series(build_ages_histogram(df)), 'ageStats': { 'avg': round(df['age'].mean(), 1), 'median': round(df['age'].median(), 1), 'std': round(df['age'].std(), 1), - 'under_30': percent(len(df[df['age'] < 30]), len(df)), 'adults': percent(len(df[df['age'] >= 18]), len(df)), - 'over_30': percent(len(df[df['age'] >= 30]), len(df)), - 'under_30_count': len(df[df['age'] < 30]), 'adults_count': len(df[df['age'] >= 18]), + 'under_30': percent(len(df[df['age'] < 30]), len(df)), + 'under_30_count': len(df[df['age'] < 30]), + 'over_30': percent(len(df[df['age'] >= 30]), len(df)), 'over_30_count': len(df[df['age'] >= 30]), + 'under_25': percent(len(df[df['age'] < 25]), len(df)), + 'under_25_count': len(df[df['age'] < 25]), + 'over_25': percent(len(df[df['age'] >= 25]), len(df)), + 'over_25_count': len(df[df['age'] >= 25]), }, - 'neuter': extractQuestionSingle(df, 6), - 'neuterByUsers': extractQuestionSingle(df_neuter, 6), - 'pronounGroups': extractQuestion(df, 7), - 'pronounGroupsAggr': extractQuestion(df, 7, includeAnswers=False, includeAggregates=True), - 'pluralNouns': extractQuestionSingle(df_plural, 8), - 'pluralNonGendered': extractQuestionSingle(df_plural, 9), - 'pronouns': extractQuestion(df, 10), - 'pronounsAggr': extractQuestion(df, 10, includeAnswers=False, includeAggregates=True), - 'nouns': extractQuestion(df, 11), - 'honorifics': extractQuestion(df, 12, includeAggregates=True), - 'obstacles': extractQuestion(df, 13), - 'groups': extractQuestion(df, 14), - 'reasons': extractQuestion(df, 15), - 'names': extractQuestionSingle(df, 16), - 'namesAggr': extractQuestion(df, 16, includeAnswers=False, includeAggregates=True), - 'english': extractQuestion(df, 17, includeAggregates=True), - 'labelsGender': extractQuestion(df, 18, includeAggregates=True, removeUnderscores=False), - 'labelsAttractionSplit': extractQuestionSingle(df, 19), - 'labelsSexuality': extractQuestion(df, 20, includeAggregates=True, removeUnderscores=False), - 'labelsRomantic': extractQuestion(df, 21, includeAggregates=True, removeUnderscores=False), - 'transtionAnswered': extractQuestionSingle(df, 22), - 'transitionSocial': extractQuestionSingle(df, 23), - 'transitionName': extractQuestionSingle(df, 24), - 'transitionMarker': extractQuestionSingle(df, 25), - 'transitionPhysical': extractQuestionSingle(df, 26), - 'transitionHormonal': extractQuestionSingle(df, 27), - 'transitionSurgical': extractQuestionSingle(df, 28), + 'neuter': extract_question_single(df, 6), + 'neuterByUsers': extract_question_single(df_neuter, 6), + 'pronounGroups': extract_question(df, 7), + 'pronounGroupsAggr': extract_question(df, 7, include_answers=False, include_aggregates=True), + 'pluralNouns': extract_question_single(df_plural, 8), + 'pluralNonGendered': extract_question_single(df_plural, 9), + 'pronouns': extract_question(df, 10), + 'pronounsAggr': extract_question(df, 10, include_answers=False, include_aggregates=True), + 'nouns': extract_question(df, 11), + 'honorifics': extract_question(df, 12, include_aggregates=True), + 'obstacles': extract_question(df, 13), + 'groups': extract_question(df, 14), + 'reasons': extract_question(df, 15), + 'names': extract_question_single(df, 16), + 'namesAggr': extract_question(df, 16, include_answers=False, include_aggregates=True), + 'english': extract_question(df, 17, include_aggregates=True), + 'labelsGender': extract_question(df, 18, include_aggregates=True, remove_underscores=False), + 'labelsAttractionSplit': extract_question_single(df, 19), + 'labelsSexuality': extract_question(df, 20, include_aggregates=True, remove_underscores=False), + 'labelsRomantic': extract_question(df, 21, include_aggregates=True, remove_underscores=False), + 'transtionAnswered': extract_question_single(df, 22), + 'transitionSocial': extract_question_single(df, 23), + 'transitionName': extract_question_single(df, 24), + 'transitionMarker': extract_question_single(df, 25), + 'transitionPhysical': extract_question_single(df, 26), + 'transitionHormonal': extract_question_single(df, 27), + 'transitionSurgical': extract_question_single(df, 28), } stats_json = { @@ -231,17 +239,17 @@ def analyse(group: str, df: pd.DataFrame, echo: bool = False, diffs: List[int] = return stats -def buildAgesHistogram(df: pd.DataFrame) -> pd.Series: +def build_ages_histogram(df: pd.DataFrame) -> pd.Series: ages = [int(a) for a in df['age'].to_list() if a > 0] - agesHist = {i: 0 for i in range(min(ages), max(ages) + 1)} + ages_hist = {i: 0 for i in range(min(ages), max(ages) + 1)} for age in ages: - agesHist[age] += 1 + ages_hist[age] += 1 s = len(ages) return pd.Series({ age: percent(count, s, 3) for age, count - in agesHist.items() + in ages_hist.items() }) @@ -317,37 +325,37 @@ if __name__ == '__main__': 'transitionSurgical': 'Tranzycja medyczna – zmiany chirurgiczne', } - # for group, group_stats in stats.items(): - # for graph, graph_label in graphs.items(): - # generateBar(group_stats[graph], group, graph, graph_label) - # - # for comparison_key, comparison_groups in comparisons.items(): - # ensureEmptyDir(outputDir / comparison_key) - # for graph, graph_label in graphs.items(): - # data = pd.DataFrame({ - # groupLabel: stats[group][graph] - # for group, groupLabel - # in comparison_groups.items() - # }) - # generateBar(data, comparison_key, graph, graph_label) - # - # by_year = {} - # for prev_year in [*diffs, year]: - # file_path = outputDir.parent / f'spis-{prev_year}' / 'general' / 'stats.json' - # if not file_path.exists(): - # continue - # with open(file_path, 'r') as f: - # by_year[prev_year] = json.load(f) - # - # ensureEmptyDir(outputDir / 'by_year') - # for graph, graph_label in graphs.items(): - # data = pd.DataFrame({ - # column_year: year_data[graph] - # for column_year, year_data - # in by_year.items() - # if graph in year_data - # }) - # generateBar(data, 'by_year', graph, graph_label) + for group, group_stats in stats.items(): + for graph, graph_label in graphs.items(): + generate_graph(group_stats[graph], group, graph, graph_label) + + for comparison_key, comparison_groups in comparisons.items(): + ensure_empty_dir(outputDir / comparison_key) + for graph, graph_label in graphs.items(): + data = pd.DataFrame({ + groupLabel: stats[group][graph] + for group, groupLabel + in comparison_groups.items() + }) + generate_graph(data, comparison_key, graph, graph_label) + + by_year = {} + for prev_year in [*diffs, year]: + file_path = outputDir.parent / f'spis-{prev_year}' / 'general' / 'stats.json' + if not file_path.exists(): + continue + with open(file_path, 'r') as f: + by_year[prev_year] = json.load(f) + + ensure_empty_dir(outputDir / 'by_year') + for graph, graph_label in graphs.items(): + data = pd.DataFrame({ + column_year: year_data[graph] + for column_year, year_data + in by_year.items() + if graph in year_data + }) + generate_graph(data, 'by_year', graph, graph_label) write_ins_dir = outputDir / 'write_ins' write_ins_dir.mkdir(parents=True, exist_ok=True) diff --git a/locale/pl/blog/spis-2023.md b/locale/pl/blog/spis-2023.md index 7c01e3781..17737380f 100644 --- a/locale/pl/blog/spis-2023.md +++ b/locale/pl/blog/spis-2023.md @@ -55,7 +55,7 @@ a {json=spis-2023/%group%/stats.json=ageStats.adults}% to osoby pełnoletnie. {/census_groups} -Liczba odpowiedzi jest w tym roku rekordowa (w porównaniu z 1816 odpowiedziami w 2022 roku i 2211 w 2021 roku). +Liczba odpowiedzi jest w tym roku rekordowa (w porównaniu z {json=spis-2022/general/stats.json=size} odpowiedziami w 2022 roku i {json=spis-2021/general/stats.json=size} w 2021 roku). Średnia wieku jest podobna we wszystkich edycjach (20.4 w zeszłym roku i 21 w 2021). Zwrócono się do nas z pytaniem nt. udziału w badaniu osób poniżej osiemnastego roku życia diff --git a/locale/pl/blog/spis-2024.md b/locale/pl/blog/spis-2024.md index 59aec62cc..6c02c0d60 100644 --- a/locale/pl/blog/spis-2024.md +++ b/locale/pl/blog/spis-2024.md @@ -4,12 +4,6 @@ -
- - To wersja work-in-progress! - Automatycznie pobierane dane i wykresy są aktualne, natomiast wording, dopiski etc. to póki co copy-paste z raportu 2023. -
- Za nami już czwarte edycja Niebinarnego Spisu Powszechnego. Jak co roku, pojawia się parę nowości: idąc za licznymi sugestiami osób respondenckich, zapytałośmy osobno o orientację seksualną i romantyczną (jeśli dana osoba je rozdziela); po raz pierwszy zadałośmy (nieobowiązkowe) pytania o proces tranzycji; ponadto, tegoroczny @@ -74,18 +68,22 @@ a {json=spis-2024/%group%/stats.json=ageStats.adults}% to osoby pełnoletnie. {/census_groups} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/age} {/details} -Drugi rok z rzędu bijemy rekord w liczbie odpowiedzi (w 2023 było ich 3016, w 2022 – 1816, a w 2021 – 2201). -**Trzeba będzie poprawić 2211 na 2201 też w pozostałych raportach.** +
+ +Drugi rok z rzędu bijemy rekord w liczbie odpowiedzi (w 2023 było ich {json=spis-2023/general/stats.json=size}, +w 2022 – {json=spis-2022/general/stats.json=size}, a w 2021 – {json=spis-2021/general/stats.json=size}). Średnia wieku jest podobna we wszystkich edycjach, choć zwraca uwagę, że od 2022 roku stopniowo rośnie. -Przypomnijmy, że w poprzednich latach wynosiła odpowiednio: 21,1 (2021); 20,4 (2022) i 21,2 (2023). -**Do poprawienia średnia wieku z 1. edycji.** +Przypomnijmy, że w poprzednich latach wynosiła odpowiednio: {json=spis-2021/general/stats.json=ageStats.avg} (2021); +{json=spis-2022/general/stats.json=ageStats.avg} (2022) i {json=spis-2023/general/stats.json=ageStats.avg} (2023). Od pierwszej edycji wyniki Spisu wskazują, że to przede wszystkim młode osoby identyfikują się jako niebinarne (przy założeniu, że zebrana przez nas próba jest reprezentatywna, czego nie możemy być pewne). @@ -136,8 +134,8 @@ W tym roku po raz drugi zapytałośmy osoby badane o preferencje w kwestii nazyw konotacje „nijakości”. Nasze podejście zdaje się podzielać większość osób badanych – **{json=spis-2024/general/stats.json=neuter.rodzaj neutralny}%** **wybrało opcję „rodzaj neutralny”, a tylko {json=spis-2024/general/stats.json=neuter.rodzaj nijaki}% – „rodzaj nijaki”.** -Jednocześnie, ciekawie jest zauważyć, że popularność „rodzaju neutralnego” spadła o {json=spis-2024/general/stats.json=@diff.spis=2023.neuter.rodzaj neutralny} p.p. -w stosunku do zeszłego roku, podczas gdy popularność „rodzaju nijakiego” wzrosła o {json=spis-2024/general/stats.json=@diff.spis=2023.neuter.rodzaj nijaki} p.p. +Jednocześnie, ciekawie jest zauważyć, że popularność „rodzaju neutralnego” spadła o {json=spis-2024/general/stats.json=@diff.spis-2023.neuter.rodzaj neutralny} p.p. +w stosunku do zeszłego roku, podczas gdy popularność „rodzaju nijakiego” wzrosła o {json=spis-2024/general/stats.json=@diff.spis-2023.neuter.rodzaj nijaki} p.p. W dopiskach do tego pytania w zeszłorocznej edycji powtarzały się jeszcze dwie propozycje, które postanowiłośmy dodać do formularza w tym roku. Za nazwą „rodzaju niebinarny” opowiedziało się {json=spis-2024/general/stats.json=neuter.rodzaj niebinarny}% osób badanych, @@ -169,12 +167,16 @@ Przy podziale ze względu na miejsce zamieszkania, przypisaną płeć i grupę w {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/neuter} {/details} +
+ ### …wśród osób używających tych form Byłośmy również ciekawe, czy odpowiedzi będą znacząco inne wśród samych osób, które zadeklarowały, że odpowiadają @@ -189,12 +191,16 @@ za tą opcją opowiada się {json=spis-2024/general/stats.json=neuterByUsers.rod {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/neuterByUsers} {/details} +
+ ## Używane formy Zaznaczamy, że osoby respondenckie były pytanie o to, jak *chcą* mówić i jak *chcą* by się do nich zwracać – nawet jeśli nie jest to (obecnie) możliwe. @@ -213,12 +219,16 @@ W dalszej części formularza pytałośmy też o powody nieużywania niestandard {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/pronounGroups} {/details} +
+ Na początku podkreślmy, że pytanie dotyczyło form, które osobom badanym odpowiadają i których _chciałyby_ używać, nawet jeśli obecnie nie mogą (bo np. nie są wyoutowane lub boją się o swój komfort czy bezpieczeństwo). @@ -230,17 +240,17 @@ zeszłorocznego, jak i [tego sprzed dwóch lat](/blog/spis-2022#rodzaj-gramatycz {census_groups} {json=spis-2024/%group%/stats.json=pronounGroups.unikanie form nacechowanych płciowo}% osób respondenckich -używa wobec siebie [form unikających deklarowania płci](/unikanie), -({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroups.unikanie form nacechowanych płciowo} p.p. w stosunku do zeszłego roku). +używa wobec siebie [form unikających deklarowania płci](/unikanie){optional}, +({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroups.unikanie form nacechowanych płciowo} p.p. w stosunku do zeszłego roku){/optional}. -{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: binarne}% osób używa form binarnych (rodzaj męski i/lub żeński) ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: binarne} p.p.), -ale tylko {json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: wyłącznie binarne}% _wyłącznie_ form binarnych ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: wyłącznie binarne} p.p.). -{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: binarne zamiennie}% osób zaznaczyło zarówno formy męskie i żeńskie ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: binarne zamiennie} p.p.). +{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: binarne}% osób używa form binarnych (rodzaj męski i/lub żeński){optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: binarne} p.p.){/optional}, +ale tylko {json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: wyłącznie binarne}% _wyłącznie_ form binarnych{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: wyłącznie binarne} p.p.){/optional}. +{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: binarne zamiennie}% osób zaznaczyło zarówno formy męskie i żeńskie{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: binarne zamiennie} p.p.){/optional}. -{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: niebinarne}% osób używa form niebinarnych ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: niebinarne}), -przy czym {json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: wyłącznie niebinarne}% _wyłącznie_ form niebinarnych ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: wyłącznie niebinarne} p.p.). +{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: niebinarne}% osób używa form niebinarnych{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: niebinarne}){/optional}, +przy czym {json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: wyłącznie niebinarne}% _wyłącznie_ form niebinarnych{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: wyłącznie niebinarne} p.p.){/optional}. -{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: mnogie}% osób używa którejś z (lub kilku) form mnogich ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: mnogie} p.p.). +{json=spis-2024/%group%/stats.json=pronounGroupsAggr.łącznie: mnogie}% osób używa którejś z (lub kilku) form mnogich{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pronounGroupsAggr.łącznie: mnogie} p.p.){/optional}. {/census_groups} @@ -318,12 +328,16 @@ Treśc pozostałych dopisków podsumowano poniżej. {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/pronouns} {/details} +
+ Pytanie o pismo było bardziej szczegółowe niż to o mowę i pozwalało na wybór konkretnych zestawów zaimków korespondujących z różnymi rodzajami. Przykładowo, zamiast standardowego paradygmatu „[ono/jego](/ono)” w rodzaju neutralnym można było wybrać „[ono/jej](/ono/jej)”, gdzie formy deklinacyjne identyczne z męskimi zastąpione są żeńskimi. Dostępne były także niewymawialne formy graficzne, takie jak iksy ([onx/jex](/onx)) @@ -352,12 +366,16 @@ Ze względu na mnogość opcji, zgrupowałośmy ze sobą podobne zaimki, by lepi {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/pronounsAggr} {/details} +
+ Podobnie jak w mowie, **w piśmie najpopularniejsze są formy męskie ({json=spis-2024/general/stats.json=pronouns.on/jego}%, {json=spis-2024/general/stats.json=@diff.spis-2023.pronouns.on/jego} p.p.).** **W piśmie zachowała się też obecna w zeszłym roku przewaga rodzaju neutralnego nad żeńskim.** Przynajmniej jedną formę korespondującą z rodzajem neutralnym wybrało {json=spis-2024/general/stats.json=pronounsAggr.łącznie: neutralne}% osób respondenkich ({json=spis-2024/general/stats.json=@diff.spis-2023.pronounsAggr.łącznie: neutralne} p.p.), @@ -441,12 +459,16 @@ do generatora z naszej strony, aby szczegółowo przedstawić używane formy. Z {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/nouns} {/details} +
+ Odpowiedzi na pytanie dotyczące form rzeczownikowych wyglądają podobnie we wszystkich edycjach spisu. Od początku **najczęściej wybierane są maskulatywy (w tym roku wybrało je {json=spis-2024/general/stats.json=nouns.maskulatywy}%, {json=spis-2024/general/stats.json=@diff.spis-2023.nouns.maskulatywy} p.p. w stosunku do zeszłego roku),** **minimalnie rzadziej – [osobatywy](/osobatywy) ({json=spis-2024/general/stats.json=nouns.osobatywy}%, {json=spis-2024/general/stats.json=@diff.spis-2023.nouns.osobatywy} p.p.).** @@ -530,12 +552,16 @@ W przyszłym roku rozważymy dodanie pytania o konkretne formy neutratywów. {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/honorifics} {/details} +
+ W tej edycji, kierując się częstymi dopiskami, dodałośmy dwie nowe opcje do formularza: neologiczną formę grzecznościową *pano* oraz na wpół normatywny zwrot ze słowem *osoba* (np. „czy chciałby osoba złożyć zamówienie?”). @@ -549,8 +575,8 @@ Niżej pod względem popularności plasują się normatywne formy grzecznościow *pan* ({json=spis-2024/general/stats.json=honorifics.pan}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.pan} p.p.), *pani* ({json=spis-2024/general/stats.json=honorifics.pani}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.pani} p.p.), oraz *państwo* z uzgodnieniem w liczbie pojedynczej – „czy chce państwo...” -({json=spis-2024/general/stats.json=honorifics.państwo (l. poj.)}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.państwo (l. poj.)} p.p.) -i mnogiej – „czy chcą państwo...” ({json=spis-2024/general/stats.json=honorifics.państwo (l. mn.)}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.państwo (l. mn.)} p.p.). +({json=spis-2024/general/stats.json=honorifics.państwo (l\\. poj\\.)}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.państwo (l\\. poj\\.)} p.p.) +i mnogiej – „czy chcą państwo...” ({json=spis-2024/general/stats.json=honorifics.państwo (l\\. mn\\.)}%, {json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.państwo (l\\. mn\\.)} p.p.). Na podobnym poziomie utrzymuje się opcja zwracania się „per wy”; tę wybrało {json=spis-2024/general/stats.json=honorifics.„per wy”}% osób ({json=spis-2024/general/stats.json=@diff.spis-2023.honorifics.„per wy”} p.p.). @@ -630,12 +656,12 @@ o mowę, czyli {json=spis-2024/general/stats.json=size_plural} osób. {census_groups} -{json=spis-2024/%group%/stats.json=pluralNonGendered.tak}% ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.tak} p.p. +{json=spis-2024/%group%/stats.json=pluralNonGendered.tak}%{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.tak} p.p{/optional}. w stosunku do zeszłego roku) zadeklarowało, że chce używania liczby mnogiej także w przypadku form nienacechowanych rodzajowo. -{json=spis-2024/%group%/stats.json=pluralNonGendered.nie}% ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.nie} p.p.) +{json=spis-2024/%group%/stats.json=pluralNonGendered.nie}%{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.nie} p.p.){/optional} woli w tych miejscach liczbę pojedynczą. -{json=spis-2024/%group%/stats.json=pluralNonGendered.wymiennie / bez różnicy / nie mam zdania}% -({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.wymiennie / bez różnicy / nie mam zdania} p.p.) nie ma w tej kwestii preferencji. +{json=spis-2024/%group%/stats.json=pluralNonGendered.wymiennie / bez różnicy / nie mam zdania}%{optional} +({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNonGendered.wymiennie / bez różnicy / nie mam zdania} p.p.) nie ma w tej kwestii preferencji{/optional}. {/census_groups} @@ -645,20 +671,24 @@ woli w tych miejscach liczbę pojedynczą. {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/pluralNonGendered} {/details} +
+ {census_groups} -{json=spis-2024/%group%/stats.json=pluralNouns.tak}% ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.tak} p.p.) +{json=spis-2024/%group%/stats.json=pluralNouns.tak}%{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.tak} p.p.){/optional} osób chce być opisywane rzeczownikami w liczbie mnogiej, -{json=spis-2024/%group%/stats.json=pluralNouns.nie}% ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.nie} p.p.) +{json=spis-2024/%group%/stats.json=pluralNouns.nie}%{optional} ({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.nie} p.p.){/optional} wybiera rzeczowniki w liczbie pojedynczej, a {json=spis-2024/%group%/stats.json=pluralNouns.wymiennie / bez różnicy / nie mam zdania}% -({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.wymiennie / bez różnicy / nie mam zdania} p.p.) +{optional}({json=spis-2024/%group%/stats.json=@diff.spis-2023.pluralNouns.wymiennie / bez różnicy / nie mam zdania} p.p.){/optional} nie na w tej kwestii preferencji. {/census_groups} @@ -669,12 +699,16 @@ nie na w tej kwestii preferencji. {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/pluralNouns} {/details} +
+ Choć różnice w stosunku do wartości z zeszłego roku nie są bardzo znaczące, widzimy dwie interesujące rzeczy. Po pierwsze, w pytaniu o formy nienacechowane rodzajowo większość osób opowiedziała się za liczbą pojedynczą (w zeszłym roku największa grupa osób nie miała preferencji). Po drugie, w przypadku obu pytań liczba odpowiedzi „tak” i „nie mam zdania” @@ -699,12 +733,16 @@ pozostają zawsze w liczbie mnogiej (np. „usiądźcie, mamo”). Zatem korzyst {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/english} {/details} +
+ **Od pierwszej edycji Spisu największą popularnością cieszy się zaimek *they*,** który w języku angielskim zyskał już miano niejako „domyślnego” zaimka dla osób niebinarnych (choć, jak wskazują wyniki badania [Gender Census](https://www.gendercensus.com), nie jest on akceptowany przez wszystkie z nich). Może on przybierać dwie formy zwrotne – tradycyjne *themselves* i mniej standardowe @@ -716,8 +754,8 @@ w stosunku do zeszłego roku), a *they/themselves* – {json=spis-2024/general/s **({json=spis-2024/general/stats.json=@diff.spis-2023.english.łącznie: they}%).** Jest to najwyższa wartośc procentowa nie tylko w pytaniu o angielskie zaimki, ale we wszystkich pytaniach Spisu – w żadnej innej kwestii osoby respondenckie nie były aż tak zgodne. -Dalej znalazły się standardowe *he* {json=spis-2024/general/stats.json=english.he/him}%, {json=spis-2024/general/stats.json=@diff.spis-2023.english.he/him} p.p.) -i *she* {json=spis-2024/general/stats.json=english.she/her}%, {json=spis-2024/general/stats.json=@diff.spis-2023.english.she/her} p.p.). +Dalej znalazły się standardowe *he* ({json=spis-2024/general/stats.json=english.he/him}%, {json=spis-2024/general/stats.json=@diff.spis-2023.english.he/him} p.p.) +i *she* ({json=spis-2024/general/stats.json=english.she/her}%, {json=spis-2024/general/stats.json=@diff.spis-2023.english.she/her} p.p.). Kolejną pozycję zajął zaimek *it* ({json=spis-2024/general/stats.json=english.it/its}%, {json=spis-2024/general/stats.json=@diff.spis-2023.english.it/its} p.p.). Choć jego popularność w Spisie stopniowo spada od 2022 roku, taki wynik wciąż może zaskakiwać. Wielu osobom może kojarzyć się dehuminazująco, @@ -808,7 +846,7 @@ do ściągania uwagi na swoją płeć wskazują, że **popularne wyobrażenie o **używania konkretnego języka jest błędne.** Jedna trzecia badanych osób ({json=spis-2024/general/stats.json=obstacles.strach przed stygmatyzacją z powodu „niepoprawnego” języka}%, -{json=spis-2024/general/stats.json=obstacles.@diff.spis-2023.strach przed stygmatyzacją z powodu „niepoprawnego” języka}) +{json=spis-2024/general/stats.json=@diff.spis-2023.obstacles.strach przed stygmatyzacją z powodu „niepoprawnego” języka}) podała, że korzystanie z niestandardowych form utrudnia jej strach przed stygmatyzacją z powodu „niepoprawnego języka”, a jedna czwarta ({json=spis-2024/general/stats.json=obstacles.nie chcę być odebranx jako nieprofesjonalnx, boję się wyśmiania}%) – że boi się wyśmiania i bycia potraktowaną jako nieprofesjonalna. @@ -821,8 +859,8 @@ Jednocześnie, Puchała i Hansen ([2024](https://psycnet.apa.org/doiLanding?doi= wskazują, że tendencja ta jest słabsza u osób, które już wczesniej zetknęły się z takim językiem. A zatem jego promowanie – i po prostu używanie – ma szansę stopniowo zmniejszać negatywny odbiór społeczny. -Aż jedna czwarta osób respondenckich ({json=spis-2024/general/stats.json=obstacles.ciężko mi się przywyczaić}%, -{json=spis-2024/general/stats.json=@diff.spis-2023.obstacles.ciężko mi się przywyczaić} p.p.) +Aż jedna czwarta osób respondenckich ({json=spis-2024/general/stats.json=obstacles.ciężko mi się przyzwyczaić}%, +{json=spis-2024/general/stats.json=@diff.spis-2023.obstacles.ciężko mi się przyzwyczaić} p.p.) zgłosiła, że im samym trudno się przyzwyczaić do używania niestandardowych form, z kolei {json=spis-2024/general/stats.json=obstacles.problemy z opanowaniem gramatyki tych form}% jako problem podało problemy z opanowaniem gramatyki tych form. Trudności z przywyczajeniem się do „niebinarnego” języka w odniesieniu do samych siebie od 2022 roku @@ -852,12 +890,16 @@ iż jestem nieco starsza niż wyoutowane osoby NB.” {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/obstacles} {/details} +
+ Osoby mieszkające za granicą wyraźnie mniej boją się trans-/enbyfobii; być może dlatego, że ich kontakt z osobami z Polski jest ograniczony i utrzymują go głównie z osobami, które są akceptujące. To może być też powód, dla którego mniej boją się sprawania kłopotu innym oraz oskarżeń o używanie „niepoprawnego” języka. Częściej są też wyoutwane. Jednocześnie częściej zgłaszają, @@ -905,7 +947,7 @@ Najrzadziej wybieranymi odpowiedziamy były „opinie osób eksperckich” ({jso {json=spis-2024/general/stats.json=@diff.spis-2023.reasons.opinie osób eksperckich} p.p.), inspiracja naszym [Manifestem Niebinarnej Polszczyzny](/manifest) ({json=spis-2024/general/stats.json=reasons.Manifest Niebinarnej Polszczyzny}%, {json=spis-2024/general/stats.json=@diff.spis-2023.reasons.Manifest Niebinarnej Polszczyzny} p.p.) -i wreszcie – inspiracja książką, filmem lub serialem ({json=spis-2024/general/stats.json=reasons.inspiracja książką, filmem, serialem, ...}%; +i wreszcie – inspiracja książką, filmem lub serialem ({json=spis-2024/general/stats.json=reasons.inspiracja książką, filmem, serialem, …}%; ta odpowiedź pojawiła się w formularzu po raz pierwszy). Wśród dopisków najczęściej pojawiała się odpowiedź, że osoba chce „zbalansować” to, jak jest postrzegana przez użycie form @@ -921,12 +963,16 @@ komentarz o tym, że osoba lubi „bawić się językiem” oraz zdanie „\[uż {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/reasons} {/details} +
+ Przy podziale na miejsce zamieszakania nie widać wyraźnych różnic, choć można zauważyć, że osoby mieszkające poza Polską częścię deklarują, że istotna była dla nich estetyka i brzmienie dalej formy, a rzadziej komfort i poczucie dopasowania. @@ -989,12 +1035,16 @@ bliskim środowiskiem queerowym (pamiętam że nawet urządziłam ankietę wśr {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/names} {/details} +
+ ## Język neutralny płciowo ### Opisywanie grup mieszanych @@ -1037,12 +1087,16 @@ nazwała „mówieniem podłogą” (znak „_” stosowany do zapisywania takic {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/groups} {/details} +
+ {details=Dopiski} - \[unikanie nacechowania rodzajowego\] 50 @@ -1095,7 +1149,7 @@ osób opisało się przy pomocy kategorii *gender questioning*, a {json=spis-2024/general/stats.json=labelsGender.rozważając_ swoją płeć}% ({json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.rozważając_ swoją płeć} p.p.) jako *rozważające swoją płeć*. -**Jedynie niecała połowa badanych ({json=spis-2024/general/stats.json=labelsGender.łącznie: trans}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.łącznie: trans} p.p.)** +**Jedynie niecała połowa badanych ({json=spis-2024/general/stats.json=labelsGender.łącznie: trans\*}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.łącznie: trans\*} p.p.)** określiła się jako transpłciowa, tzn. **wybrała co najmniej jeden termin z cząstką *trans-*.** Najczęściej wybierano sam przymiotnik *trans* ({json=spis-2024/general/stats.json=labelsGender.trans}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.trans} p.p.), w dalszej kolejności anglojęzyczne *transgender* ({json=spis-2024/general/stats.json=labelsGender.transgender}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transgender} p.p.), @@ -1109,8 +1163,7 @@ Na końcu, dość blisko siebie – określenia denotujące neutralną i kobiec *transfeminine* ({json=spis-2024/general/stats.json=labelsGender.transfeminine}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transfeminine} p.p.), *trans kobiec_* ({json=spis-2024/general/stats.json=labelsGender.transkobiec_}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transkobiec_} p.p.), i *trans kobieta* ({json=spis-2024/general/stats.json=labelsGender.trans kobieta}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.trans kobieta} p.p.) -oraz -*transneutral* ({json=spis-2024/general/stats.json=labelsGender.transneutral}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transneutral} p.p.) +oraz *transneutral* ({json=spis-2024/general/stats.json=labelsGender.transneutral}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transneutral} p.p.) i *transneutraln_* ({json=spis-2024/general/stats.json=labelsGender.transneutraln_}%, {json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.transneutraln_} p.p.). Ten stosunkowo niski odsetek badanych osób utożsamiających się z kategorią transpłciowości może zaskakiwać – współczesne rozumienie transpłciowości jako @@ -1120,14 +1173,14 @@ przeprowadzone na próbie 6258 osób transpłciowych (33% stanowiły osoby, któ z której 65% „zdecydowanie”, 26% „częściowo”, a 10% „wcale nie” utożsamiało się z terminem *transgender* (*transpłciowosć*), a także obserwację Aleksa Iantaffiego ([2017](https://link.springer.com/book/10.1057/978-1-137-51053-2): 285), że wiele osób niebinarnych czuje się „niewystarczająco trans” oraz, że wprowadzenie pojęcia niebinarności do dyskusji zamazuje granice między trans- a cispłciowością. -Zwróćmy też uwagę, że liczba osób zaznaczających określenia z cząstką *-trans* stopniowo rośnie: w 2021 roku było to -({json=spis-2021/general/stats.json=labels.łącznie: trans\*}%, w 2022 – {json=spis-2022/general/stats.json=labels.łącznie: trans\*}%, -a w zeszłym – ({json=spis-2023/general/stats.json=labelsGender.łącznie: trans\*}%. +Zwróćmy też uwagę, że liczba osób zaznaczających określenia z cząstką *trans-* stopniowo rośnie: w 2021 roku było to +31,8%, w 2022 – {json=spis-2022/general/stats.json=labels.łącznie: trans\*}%, +a w zeszłym – {json=spis-2023/general/stats.json=labelsGender.łącznie: trans\*}%. -Wreszcie, **({json=spis-2024/general/stats.json=labelsGender.łącznie: binarne}% (({json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.łącznie: binarne} p.p.)** +Wreszcie, **{json=spis-2024/general/stats.json=labelsGender.łącznie: binarne}% ({json=spis-2024/general/stats.json=@diff.spis-2023.labelsGender.łącznie: binarne} p.p.)** **badanych osób wybrało „binarnie nacechowane” określenia** (*kobieta* i *kobiec_* oraz *mężczyzna* i *męsk_*). Ten odsetek również stopniowo wzrasta -od pierwszej edycji badnia: w 2021 wyniósł {json=spis-2021/general/stats.json=labelsGender.łącznie: binarne}%, -w 2022 – {json=spis-2022/general/stats.json=labelsGender.łącznie: binarne}%, a w zeszłym – {json=spis-2023/general/stats.json=labelsGender.łącznie: binarne}%. +od pierwszej edycji badnia: w 2021 wyniósł 18,0%, +w 2022 – {json=spis-2022/general/stats.json=labels.łącznie: binarne}%, a w zeszłym – {json=spis-2023/general/stats.json=labelsGender.łącznie: binarne}%. Możemy powtórzyć naszą zeszłoroczną obserwację, że ta pozorna sprzeczność może oznaczać coraz większą swobodę w definiowaniu własnej tożsamości zamiast sztywnego trzymania się etykietek. @@ -1167,12 +1220,16 @@ i *gender abolitionist*, jedna z osób napisała „nie rozumiem płci”, a inn {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/labelsGender} {/details} +
+ {census_groups} | Angielska etykietka | % | Polska etykietka | % | Polska etykietka | % | @@ -1288,12 +1345,16 @@ i *wsumieobojetnemitoseksualny* oraz *kobieciarz*. {/census_comparisons} +
+ {details=Porównanie z poprzednimi edycjami} {graph=/docs-local/spis-2024/by_year/labelsSexuality} {/details} +
+ ### Etykietki opisujące romantyczność W komentarzach do poprzedniej edycji Spisu wiele osób pisało, że chciałoby mieć możliwość diff --git a/locale/pl/docs/spis-2024/agab_f/age.html b/locale/pl/docs/spis-2024/agab_f/age.html index f891a7a17..ef2faace1 100644 --- a/locale/pl/docs/spis-2024/agab_f/age.html +++ b/locale/pl/docs/spis-2024/agab_f/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/english.html b/locale/pl/docs/spis-2024/agab_f/english.html index bd41fedc6..2039a17c6 100644 --- a/locale/pl/docs/spis-2024/agab_f/english.html +++ b/locale/pl/docs/spis-2024/agab_f/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/groups.html b/locale/pl/docs/spis-2024/agab_f/groups.html index dfe382cab..725a8a2b4 100644 --- a/locale/pl/docs/spis-2024/agab_f/groups.html +++ b/locale/pl/docs/spis-2024/agab_f/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/honorifics.html b/locale/pl/docs/spis-2024/agab_f/honorifics.html index cc7b67ac3..5caf63f6d 100644 --- a/locale/pl/docs/spis-2024/agab_f/honorifics.html +++ b/locale/pl/docs/spis-2024/agab_f/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/labelsGender.html b/locale/pl/docs/spis-2024/agab_f/labelsGender.html index 959c96ad4..528aea965 100644 --- a/locale/pl/docs/spis-2024/agab_f/labelsGender.html +++ b/locale/pl/docs/spis-2024/agab_f/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/labelsRomantic.html b/locale/pl/docs/spis-2024/agab_f/labelsRomantic.html index 650abc9be..6fa43759a 100644 --- a/locale/pl/docs/spis-2024/agab_f/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/agab_f/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/labelsSexuality.html b/locale/pl/docs/spis-2024/agab_f/labelsSexuality.html index c1fdd551d..0e85c9104 100644 --- a/locale/pl/docs/spis-2024/agab_f/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/agab_f/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/names.html b/locale/pl/docs/spis-2024/agab_f/names.html index 7c9e9302e..e8ada7447 100644 --- a/locale/pl/docs/spis-2024/agab_f/names.html +++ b/locale/pl/docs/spis-2024/agab_f/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/neuter.html b/locale/pl/docs/spis-2024/agab_f/neuter.html index f79afee3f..99bce1035 100644 --- a/locale/pl/docs/spis-2024/agab_f/neuter.html +++ b/locale/pl/docs/spis-2024/agab_f/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/neuterByUsers.html b/locale/pl/docs/spis-2024/agab_f/neuterByUsers.html index 2c55dc620..cae4bb9c6 100644 --- a/locale/pl/docs/spis-2024/agab_f/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/agab_f/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/nouns.html b/locale/pl/docs/spis-2024/agab_f/nouns.html index 1c85c8f30..007d38e70 100644 --- a/locale/pl/docs/spis-2024/agab_f/nouns.html +++ b/locale/pl/docs/spis-2024/agab_f/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/obstacles.html b/locale/pl/docs/spis-2024/agab_f/obstacles.html index bae5accf6..e66190ce9 100644 --- a/locale/pl/docs/spis-2024/agab_f/obstacles.html +++ b/locale/pl/docs/spis-2024/agab_f/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/pluralNonGendered.html b/locale/pl/docs/spis-2024/agab_f/pluralNonGendered.html index 8675c0206..8d2a68bb4 100644 --- a/locale/pl/docs/spis-2024/agab_f/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/agab_f/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/pluralNouns.html b/locale/pl/docs/spis-2024/agab_f/pluralNouns.html index dbaf3f23c..be6e3b668 100644 --- a/locale/pl/docs/spis-2024/agab_f/pluralNouns.html +++ b/locale/pl/docs/spis-2024/agab_f/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/pronounGroups.html b/locale/pl/docs/spis-2024/agab_f/pronounGroups.html index 97759cb2b..f4eec8882 100644 --- a/locale/pl/docs/spis-2024/agab_f/pronounGroups.html +++ b/locale/pl/docs/spis-2024/agab_f/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/pronouns.html b/locale/pl/docs/spis-2024/agab_f/pronouns.html index 12604a70b..974ee597f 100644 --- a/locale/pl/docs/spis-2024/agab_f/pronouns.html +++ b/locale/pl/docs/spis-2024/agab_f/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/pronounsAggr.html b/locale/pl/docs/spis-2024/agab_f/pronounsAggr.html index e94bfe941..2a3bf8d3a 100644 --- a/locale/pl/docs/spis-2024/agab_f/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/agab_f/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/reasons.html b/locale/pl/docs/spis-2024/agab_f/reasons.html index 4b4ca8ad8..c370e36f0 100644 --- a/locale/pl/docs/spis-2024/agab_f/reasons.html +++ b/locale/pl/docs/spis-2024/agab_f/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/stats.json b/locale/pl/docs/spis-2024/agab_f/stats.json index 9ade2cc87..828766cab 100644 --- a/locale/pl/docs/spis-2024/agab_f/stats.json +++ b/locale/pl/docs/spis-2024/agab_f/stats.json @@ -59,12 +59,16 @@ "avg": 22.7, "median": 21.0, "std": 5.7, - "under_30": 89.19, "adults": 87.99, - "over_30": 10.81, - "under_30_count": 2154, "adults_count": 2125, - "over_30_count": 261 + "under_30": 89.19, + "under_30_count": 2154, + "over_30": 10.81, + "over_30_count": 261, + "under_25": 72.51, + "under_25_count": 1751, + "over_25": 27.49, + "over_25_count": 664 }, "neuter": { "nie mam zdania": 8.3, @@ -467,8 +471,8 @@ "avg": 2.7, "median": 2.0, "std": 0.6, - "under_30": -5.2, - "adults": 26.0 + "adults": 26.0, + "under_30": -5.2 }, "pronounGroups": { "rodzaj m\u0119ski": -1.0, @@ -601,11 +605,11 @@ "avg": 1.9, "median": 1.0, "std": 0.3, - "under_30": -4.2, "adults": 17.8, - "over_30": 4.2, - "under_30_count": -118, "adults_count": 417, + "under_30": -4.2, + "under_30_count": -118, + "over_30": 4.2, "over_30_count": 99 }, "neuter": { diff --git a/locale/pl/docs/spis-2024/agab_f/transitionHormonal.html b/locale/pl/docs/spis-2024/agab_f/transitionHormonal.html index 51690fb90..241ca282d 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/transitionMarker.html b/locale/pl/docs/spis-2024/agab_f/transitionMarker.html index 93d9a0852..a5bb32152 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionMarker.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/transitionName.html b/locale/pl/docs/spis-2024/agab_f/transitionName.html index 7d3571fab..6ff5cb426 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionName.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/transitionPhysical.html b/locale/pl/docs/spis-2024/agab_f/transitionPhysical.html index aaf5c6a4f..3d90f92b8 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/transitionSocial.html b/locale/pl/docs/spis-2024/agab_f/transitionSocial.html index 9191bbfab..680515204 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionSocial.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_f/transitionSurgical.html b/locale/pl/docs/spis-2024/agab_f/transitionSurgical.html index 44a931ed0..a470eaab6 100644 --- a/locale/pl/docs/spis-2024/agab_f/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/agab_f/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/age.html b/locale/pl/docs/spis-2024/agab_m/age.html index 00ecf5743..9444ae770 100644 --- a/locale/pl/docs/spis-2024/agab_m/age.html +++ b/locale/pl/docs/spis-2024/agab_m/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/english.html b/locale/pl/docs/spis-2024/agab_m/english.html index 4e605c73c..97034629e 100644 --- a/locale/pl/docs/spis-2024/agab_m/english.html +++ b/locale/pl/docs/spis-2024/agab_m/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/groups.html b/locale/pl/docs/spis-2024/agab_m/groups.html index b931bdc1f..e266556d5 100644 --- a/locale/pl/docs/spis-2024/agab_m/groups.html +++ b/locale/pl/docs/spis-2024/agab_m/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/honorifics.html b/locale/pl/docs/spis-2024/agab_m/honorifics.html index 9540f8076..fa0ef0b18 100644 --- a/locale/pl/docs/spis-2024/agab_m/honorifics.html +++ b/locale/pl/docs/spis-2024/agab_m/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/labelsGender.html b/locale/pl/docs/spis-2024/agab_m/labelsGender.html index ea25626c6..85952a2cd 100644 --- a/locale/pl/docs/spis-2024/agab_m/labelsGender.html +++ b/locale/pl/docs/spis-2024/agab_m/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/labelsRomantic.html b/locale/pl/docs/spis-2024/agab_m/labelsRomantic.html index a5ffc4d53..108117607 100644 --- a/locale/pl/docs/spis-2024/agab_m/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/agab_m/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/labelsSexuality.html b/locale/pl/docs/spis-2024/agab_m/labelsSexuality.html index 6798be592..a3e9c5dc2 100644 --- a/locale/pl/docs/spis-2024/agab_m/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/agab_m/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/names.html b/locale/pl/docs/spis-2024/agab_m/names.html index b968d9231..5b7fd6cbb 100644 --- a/locale/pl/docs/spis-2024/agab_m/names.html +++ b/locale/pl/docs/spis-2024/agab_m/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/neuter.html b/locale/pl/docs/spis-2024/agab_m/neuter.html index 92e6a676e..f93ff1eb2 100644 --- a/locale/pl/docs/spis-2024/agab_m/neuter.html +++ b/locale/pl/docs/spis-2024/agab_m/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/neuterByUsers.html b/locale/pl/docs/spis-2024/agab_m/neuterByUsers.html index 18d38cf5e..2f3306d15 100644 --- a/locale/pl/docs/spis-2024/agab_m/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/agab_m/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/nouns.html b/locale/pl/docs/spis-2024/agab_m/nouns.html index 61ab6a59a..a51eddd63 100644 --- a/locale/pl/docs/spis-2024/agab_m/nouns.html +++ b/locale/pl/docs/spis-2024/agab_m/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/obstacles.html b/locale/pl/docs/spis-2024/agab_m/obstacles.html index ea1a52444..5dc209563 100644 --- a/locale/pl/docs/spis-2024/agab_m/obstacles.html +++ b/locale/pl/docs/spis-2024/agab_m/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/pluralNonGendered.html b/locale/pl/docs/spis-2024/agab_m/pluralNonGendered.html index 6c434966f..98d967583 100644 --- a/locale/pl/docs/spis-2024/agab_m/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/agab_m/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/pluralNouns.html b/locale/pl/docs/spis-2024/agab_m/pluralNouns.html index 7ab67c1f4..f8d97abae 100644 --- a/locale/pl/docs/spis-2024/agab_m/pluralNouns.html +++ b/locale/pl/docs/spis-2024/agab_m/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/pronounGroups.html b/locale/pl/docs/spis-2024/agab_m/pronounGroups.html index 358468076..0a74e2f55 100644 --- a/locale/pl/docs/spis-2024/agab_m/pronounGroups.html +++ b/locale/pl/docs/spis-2024/agab_m/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/pronouns.html b/locale/pl/docs/spis-2024/agab_m/pronouns.html index da42a74db..e17efe804 100644 --- a/locale/pl/docs/spis-2024/agab_m/pronouns.html +++ b/locale/pl/docs/spis-2024/agab_m/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/pronounsAggr.html b/locale/pl/docs/spis-2024/agab_m/pronounsAggr.html index 36d881d64..73df7b65e 100644 --- a/locale/pl/docs/spis-2024/agab_m/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/agab_m/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/reasons.html b/locale/pl/docs/spis-2024/agab_m/reasons.html index c8c82e567..50b3b4c84 100644 --- a/locale/pl/docs/spis-2024/agab_m/reasons.html +++ b/locale/pl/docs/spis-2024/agab_m/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/stats.json b/locale/pl/docs/spis-2024/agab_m/stats.json index d80caae26..8da28f6fb 100644 --- a/locale/pl/docs/spis-2024/agab_m/stats.json +++ b/locale/pl/docs/spis-2024/agab_m/stats.json @@ -68,12 +68,16 @@ "avg": 25.3, "median": 23.0, "std": 7.1, - "under_30": 80.25, "adults": 95.02, - "over_30": 19.75, - "under_30_count": 451, "adults_count": 534, - "over_30_count": 111 + "under_30": 80.25, + "under_30_count": 451, + "over_30": 19.75, + "over_30_count": 111, + "under_25": 57.83, + "under_25_count": 325, + "over_25": 42.17, + "over_25_count": 237 }, "neuter": { "nie mam zdania": 9.8, @@ -476,8 +480,8 @@ "avg": 2.8, "median": 2.0, "std": 0.9, - "under_30": -9.5, - "adults": 13.7 + "adults": 13.7, + "under_30": -9.5 }, "pronounGroups": { "rodzaj m\u0119ski": -9.4, @@ -610,11 +614,11 @@ "avg": 1.7, "median": 1.0, "std": 0.9, - "under_30": -5.7, "adults": 7.6, - "over_30": 5.7, - "under_30_count": 54, "adults_count": 130, + "under_30": -5.7, + "under_30_count": 54, + "over_30": 5.7, "over_30_count": 46 }, "neuter": { diff --git a/locale/pl/docs/spis-2024/agab_m/transitionHormonal.html b/locale/pl/docs/spis-2024/agab_m/transitionHormonal.html index 2630928c8..b977aff53 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/transitionMarker.html b/locale/pl/docs/spis-2024/agab_m/transitionMarker.html index 00ac0ba3a..21e813af3 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionMarker.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/transitionName.html b/locale/pl/docs/spis-2024/agab_m/transitionName.html index dbeb448f3..10706377a 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionName.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/transitionPhysical.html b/locale/pl/docs/spis-2024/agab_m/transitionPhysical.html index c32cae3d8..f9186c706 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/transitionSocial.html b/locale/pl/docs/spis-2024/agab_m/transitionSocial.html index e949391a2..9c40e5d23 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionSocial.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/agab_m/transitionSurgical.html b/locale/pl/docs/spis-2024/agab_m/transitionSurgical.html index 53b35d1cc..7074b5da8 100644 --- a/locale/pl/docs/spis-2024/agab_m/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/agab_m/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/age.html b/locale/pl/docs/spis-2024/by_agab/age.html index 7ab3d1b19..8ac38eb88 100644 --- a/locale/pl/docs/spis-2024/by_agab/age.html +++ b/locale/pl/docs/spis-2024/by_agab/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/english.html b/locale/pl/docs/spis-2024/by_agab/english.html index 666649bb3..8536a0283 100644 --- a/locale/pl/docs/spis-2024/by_agab/english.html +++ b/locale/pl/docs/spis-2024/by_agab/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/groups.html b/locale/pl/docs/spis-2024/by_agab/groups.html index bc675d7da..b3319bf17 100644 --- a/locale/pl/docs/spis-2024/by_agab/groups.html +++ b/locale/pl/docs/spis-2024/by_agab/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/honorifics.html b/locale/pl/docs/spis-2024/by_agab/honorifics.html index fb99c6212..378f1fb9a 100644 --- a/locale/pl/docs/spis-2024/by_agab/honorifics.html +++ b/locale/pl/docs/spis-2024/by_agab/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/labelsGender.html b/locale/pl/docs/spis-2024/by_agab/labelsGender.html index 335979f7a..05e5a4b3b 100644 --- a/locale/pl/docs/spis-2024/by_agab/labelsGender.html +++ b/locale/pl/docs/spis-2024/by_agab/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/labelsRomantic.html b/locale/pl/docs/spis-2024/by_agab/labelsRomantic.html index 566427da1..0e1ccd40d 100644 --- a/locale/pl/docs/spis-2024/by_agab/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/by_agab/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/labelsSexuality.html b/locale/pl/docs/spis-2024/by_agab/labelsSexuality.html index cfe93be50..96160f791 100644 --- a/locale/pl/docs/spis-2024/by_agab/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/by_agab/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/names.html b/locale/pl/docs/spis-2024/by_agab/names.html index 76a8e6f0b..70c6f2fa6 100644 --- a/locale/pl/docs/spis-2024/by_agab/names.html +++ b/locale/pl/docs/spis-2024/by_agab/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/neuter.html b/locale/pl/docs/spis-2024/by_agab/neuter.html index 1d7ab5728..d1671830a 100644 --- a/locale/pl/docs/spis-2024/by_agab/neuter.html +++ b/locale/pl/docs/spis-2024/by_agab/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/neuterByUsers.html b/locale/pl/docs/spis-2024/by_agab/neuterByUsers.html index c28aa7c54..8824f0b61 100644 --- a/locale/pl/docs/spis-2024/by_agab/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/by_agab/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/nouns.html b/locale/pl/docs/spis-2024/by_agab/nouns.html index a6bac71a7..e758b2aee 100644 --- a/locale/pl/docs/spis-2024/by_agab/nouns.html +++ b/locale/pl/docs/spis-2024/by_agab/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/obstacles.html b/locale/pl/docs/spis-2024/by_agab/obstacles.html index 8d2466b03..f4a33eb21 100644 --- a/locale/pl/docs/spis-2024/by_agab/obstacles.html +++ b/locale/pl/docs/spis-2024/by_agab/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/pluralNonGendered.html b/locale/pl/docs/spis-2024/by_agab/pluralNonGendered.html index a286da2b6..1a2e0275a 100644 --- a/locale/pl/docs/spis-2024/by_agab/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/by_agab/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/pluralNouns.html b/locale/pl/docs/spis-2024/by_agab/pluralNouns.html index 4856605dc..f2634f449 100644 --- a/locale/pl/docs/spis-2024/by_agab/pluralNouns.html +++ b/locale/pl/docs/spis-2024/by_agab/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/pronounGroups.html b/locale/pl/docs/spis-2024/by_agab/pronounGroups.html index dc121b9c7..0c10f09ce 100644 --- a/locale/pl/docs/spis-2024/by_agab/pronounGroups.html +++ b/locale/pl/docs/spis-2024/by_agab/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/pronouns.html b/locale/pl/docs/spis-2024/by_agab/pronouns.html index e39d8fc3d..1dc6bb0d4 100644 --- a/locale/pl/docs/spis-2024/by_agab/pronouns.html +++ b/locale/pl/docs/spis-2024/by_agab/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/pronounsAggr.html b/locale/pl/docs/spis-2024/by_agab/pronounsAggr.html index f238595e6..5dc4a2c98 100644 --- a/locale/pl/docs/spis-2024/by_agab/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/by_agab/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/reasons.html b/locale/pl/docs/spis-2024/by_agab/reasons.html index ba0aa6f55..8685bc30f 100644 --- a/locale/pl/docs/spis-2024/by_agab/reasons.html +++ b/locale/pl/docs/spis-2024/by_agab/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionHormonal.html b/locale/pl/docs/spis-2024/by_agab/transitionHormonal.html index 534159735..71de46b98 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionMarker.html b/locale/pl/docs/spis-2024/by_agab/transitionMarker.html index 8352847b6..c6c3299ba 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionMarker.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionName.html b/locale/pl/docs/spis-2024/by_agab/transitionName.html index affa65585..b729492af 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionName.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionPhysical.html b/locale/pl/docs/spis-2024/by_agab/transitionPhysical.html index b62d60129..844e2ae2d 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionSocial.html b/locale/pl/docs/spis-2024/by_agab/transitionSocial.html index f83fcdf73..298031e95 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionSocial.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_agab/transitionSurgical.html b/locale/pl/docs/spis-2024/by_agab/transitionSurgical.html index f27e2c8e4..2bd08fe2d 100644 --- a/locale/pl/docs/spis-2024/by_agab/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/by_agab/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/age.html b/locale/pl/docs/spis-2024/by_age/age.html index 1bb8c655b..83475922f 100644 --- a/locale/pl/docs/spis-2024/by_age/age.html +++ b/locale/pl/docs/spis-2024/by_age/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/english.html b/locale/pl/docs/spis-2024/by_age/english.html index a90c2f1c0..6ad5e4ec5 100644 --- a/locale/pl/docs/spis-2024/by_age/english.html +++ b/locale/pl/docs/spis-2024/by_age/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/groups.html b/locale/pl/docs/spis-2024/by_age/groups.html index 42c418169..fc0eaf2c2 100644 --- a/locale/pl/docs/spis-2024/by_age/groups.html +++ b/locale/pl/docs/spis-2024/by_age/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/honorifics.html b/locale/pl/docs/spis-2024/by_age/honorifics.html index 7e01f81a0..d40108f35 100644 --- a/locale/pl/docs/spis-2024/by_age/honorifics.html +++ b/locale/pl/docs/spis-2024/by_age/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/labelsGender.html b/locale/pl/docs/spis-2024/by_age/labelsGender.html index e77beed6c..2bccb784c 100644 --- a/locale/pl/docs/spis-2024/by_age/labelsGender.html +++ b/locale/pl/docs/spis-2024/by_age/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/labelsRomantic.html b/locale/pl/docs/spis-2024/by_age/labelsRomantic.html index afc8cae54..426e3d1d1 100644 --- a/locale/pl/docs/spis-2024/by_age/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/by_age/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/labelsSexuality.html b/locale/pl/docs/spis-2024/by_age/labelsSexuality.html index d162f36c6..5f05d87dc 100644 --- a/locale/pl/docs/spis-2024/by_age/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/by_age/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/names.html b/locale/pl/docs/spis-2024/by_age/names.html index f4bc7cb0c..f17c1f239 100644 --- a/locale/pl/docs/spis-2024/by_age/names.html +++ b/locale/pl/docs/spis-2024/by_age/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/neuter.html b/locale/pl/docs/spis-2024/by_age/neuter.html index 5fc7c3120..1f42dbf3c 100644 --- a/locale/pl/docs/spis-2024/by_age/neuter.html +++ b/locale/pl/docs/spis-2024/by_age/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/neuterByUsers.html b/locale/pl/docs/spis-2024/by_age/neuterByUsers.html index 158efb8a2..08d846ba2 100644 --- a/locale/pl/docs/spis-2024/by_age/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/by_age/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/nouns.html b/locale/pl/docs/spis-2024/by_age/nouns.html index 50cde45bc..c5e64f339 100644 --- a/locale/pl/docs/spis-2024/by_age/nouns.html +++ b/locale/pl/docs/spis-2024/by_age/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/obstacles.html b/locale/pl/docs/spis-2024/by_age/obstacles.html index 80740764c..ca6d18df6 100644 --- a/locale/pl/docs/spis-2024/by_age/obstacles.html +++ b/locale/pl/docs/spis-2024/by_age/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/pluralNonGendered.html b/locale/pl/docs/spis-2024/by_age/pluralNonGendered.html index 40ced3130..6b81d9b54 100644 --- a/locale/pl/docs/spis-2024/by_age/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/by_age/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/pluralNouns.html b/locale/pl/docs/spis-2024/by_age/pluralNouns.html index 569d5d442..487e98e2f 100644 --- a/locale/pl/docs/spis-2024/by_age/pluralNouns.html +++ b/locale/pl/docs/spis-2024/by_age/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/pronounGroups.html b/locale/pl/docs/spis-2024/by_age/pronounGroups.html index 0cbd6a365..68c5dad6a 100644 --- a/locale/pl/docs/spis-2024/by_age/pronounGroups.html +++ b/locale/pl/docs/spis-2024/by_age/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/pronouns.html b/locale/pl/docs/spis-2024/by_age/pronouns.html index 25aac9dc2..315263021 100644 --- a/locale/pl/docs/spis-2024/by_age/pronouns.html +++ b/locale/pl/docs/spis-2024/by_age/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/pronounsAggr.html b/locale/pl/docs/spis-2024/by_age/pronounsAggr.html index 0225c57d4..baa5e19da 100644 --- a/locale/pl/docs/spis-2024/by_age/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/by_age/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/reasons.html b/locale/pl/docs/spis-2024/by_age/reasons.html index b91fca9f2..ac7d6fc37 100644 --- a/locale/pl/docs/spis-2024/by_age/reasons.html +++ b/locale/pl/docs/spis-2024/by_age/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionHormonal.html b/locale/pl/docs/spis-2024/by_age/transitionHormonal.html index 98ae9a12c..ab98330f5 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/by_age/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionMarker.html b/locale/pl/docs/spis-2024/by_age/transitionMarker.html index a2d2ab6f5..6b06694e8 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionMarker.html +++ b/locale/pl/docs/spis-2024/by_age/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionName.html b/locale/pl/docs/spis-2024/by_age/transitionName.html index dbc86bda8..18aef3801 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionName.html +++ b/locale/pl/docs/spis-2024/by_age/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionPhysical.html b/locale/pl/docs/spis-2024/by_age/transitionPhysical.html index 57fb1efb3..e6bd99ed1 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/by_age/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionSocial.html b/locale/pl/docs/spis-2024/by_age/transitionSocial.html index 15b5ef978..e484a1e17 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionSocial.html +++ b/locale/pl/docs/spis-2024/by_age/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_age/transitionSurgical.html b/locale/pl/docs/spis-2024/by_age/transitionSurgical.html index d9ebd3648..d12c77635 100644 --- a/locale/pl/docs/spis-2024/by_age/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/by_age/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/age.html b/locale/pl/docs/spis-2024/by_location/age.html index a1cff3961..d84ef1a2f 100644 --- a/locale/pl/docs/spis-2024/by_location/age.html +++ b/locale/pl/docs/spis-2024/by_location/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/english.html b/locale/pl/docs/spis-2024/by_location/english.html index 10ed969bb..555a64760 100644 --- a/locale/pl/docs/spis-2024/by_location/english.html +++ b/locale/pl/docs/spis-2024/by_location/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/groups.html b/locale/pl/docs/spis-2024/by_location/groups.html index 8cb0313b4..0552e8fc1 100644 --- a/locale/pl/docs/spis-2024/by_location/groups.html +++ b/locale/pl/docs/spis-2024/by_location/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/honorifics.html b/locale/pl/docs/spis-2024/by_location/honorifics.html index 2b9aaa8b9..7badd72e7 100644 --- a/locale/pl/docs/spis-2024/by_location/honorifics.html +++ b/locale/pl/docs/spis-2024/by_location/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/labelsGender.html b/locale/pl/docs/spis-2024/by_location/labelsGender.html index 59550a47f..6eff0be09 100644 --- a/locale/pl/docs/spis-2024/by_location/labelsGender.html +++ b/locale/pl/docs/spis-2024/by_location/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/labelsRomantic.html b/locale/pl/docs/spis-2024/by_location/labelsRomantic.html index 3ab7eb00b..a40708d80 100644 --- a/locale/pl/docs/spis-2024/by_location/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/by_location/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/labelsSexuality.html b/locale/pl/docs/spis-2024/by_location/labelsSexuality.html index 42725dd49..abca0f823 100644 --- a/locale/pl/docs/spis-2024/by_location/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/by_location/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/names.html b/locale/pl/docs/spis-2024/by_location/names.html index 2bc1c242d..f34c1a8bb 100644 --- a/locale/pl/docs/spis-2024/by_location/names.html +++ b/locale/pl/docs/spis-2024/by_location/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/neuter.html b/locale/pl/docs/spis-2024/by_location/neuter.html index b46ca4f3b..5074c092a 100644 --- a/locale/pl/docs/spis-2024/by_location/neuter.html +++ b/locale/pl/docs/spis-2024/by_location/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/neuterByUsers.html b/locale/pl/docs/spis-2024/by_location/neuterByUsers.html index 4431bea70..ded2d8457 100644 --- a/locale/pl/docs/spis-2024/by_location/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/by_location/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/nouns.html b/locale/pl/docs/spis-2024/by_location/nouns.html index ffb1763d2..ddb29a322 100644 --- a/locale/pl/docs/spis-2024/by_location/nouns.html +++ b/locale/pl/docs/spis-2024/by_location/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/obstacles.html b/locale/pl/docs/spis-2024/by_location/obstacles.html index 93473541f..073b2f735 100644 --- a/locale/pl/docs/spis-2024/by_location/obstacles.html +++ b/locale/pl/docs/spis-2024/by_location/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/pluralNonGendered.html b/locale/pl/docs/spis-2024/by_location/pluralNonGendered.html index f92111424..e2b718a7f 100644 --- a/locale/pl/docs/spis-2024/by_location/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/by_location/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/pluralNouns.html b/locale/pl/docs/spis-2024/by_location/pluralNouns.html index 45af85fa9..a5d9d1aae 100644 --- a/locale/pl/docs/spis-2024/by_location/pluralNouns.html +++ b/locale/pl/docs/spis-2024/by_location/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/pronounGroups.html b/locale/pl/docs/spis-2024/by_location/pronounGroups.html index 170d40f71..8caecf590 100644 --- a/locale/pl/docs/spis-2024/by_location/pronounGroups.html +++ b/locale/pl/docs/spis-2024/by_location/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/pronouns.html b/locale/pl/docs/spis-2024/by_location/pronouns.html index 276f616d0..2c80e0851 100644 --- a/locale/pl/docs/spis-2024/by_location/pronouns.html +++ b/locale/pl/docs/spis-2024/by_location/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/pronounsAggr.html b/locale/pl/docs/spis-2024/by_location/pronounsAggr.html index 4ee97291b..fef82fa45 100644 --- a/locale/pl/docs/spis-2024/by_location/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/by_location/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/reasons.html b/locale/pl/docs/spis-2024/by_location/reasons.html index 534034ef7..2b0adf622 100644 --- a/locale/pl/docs/spis-2024/by_location/reasons.html +++ b/locale/pl/docs/spis-2024/by_location/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionHormonal.html b/locale/pl/docs/spis-2024/by_location/transitionHormonal.html index e98ef43a2..4223399fb 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/by_location/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionMarker.html b/locale/pl/docs/spis-2024/by_location/transitionMarker.html index 31488d10e..221c1fead 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionMarker.html +++ b/locale/pl/docs/spis-2024/by_location/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionName.html b/locale/pl/docs/spis-2024/by_location/transitionName.html index d55fcb16b..8b0ddc4d2 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionName.html +++ b/locale/pl/docs/spis-2024/by_location/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionPhysical.html b/locale/pl/docs/spis-2024/by_location/transitionPhysical.html index b57673521..45eec920a 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/by_location/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionSocial.html b/locale/pl/docs/spis-2024/by_location/transitionSocial.html index 283242cb1..6624d8907 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionSocial.html +++ b/locale/pl/docs/spis-2024/by_location/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_location/transitionSurgical.html b/locale/pl/docs/spis-2024/by_location/transitionSurgical.html index 92279c9c5..9c1b055a2 100644 --- a/locale/pl/docs/spis-2024/by_location/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/by_location/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/age.html b/locale/pl/docs/spis-2024/by_year/age.html index 7cfeeb503..35f484b30 100644 --- a/locale/pl/docs/spis-2024/by_year/age.html +++ b/locale/pl/docs/spis-2024/by_year/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/english.html b/locale/pl/docs/spis-2024/by_year/english.html index 4f778ba44..9cd100e33 100644 --- a/locale/pl/docs/spis-2024/by_year/english.html +++ b/locale/pl/docs/spis-2024/by_year/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/groups.html b/locale/pl/docs/spis-2024/by_year/groups.html index e011c3257..12ebaad6d 100644 --- a/locale/pl/docs/spis-2024/by_year/groups.html +++ b/locale/pl/docs/spis-2024/by_year/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/honorifics.html b/locale/pl/docs/spis-2024/by_year/honorifics.html index c2b0dde1e..0a83c8782 100644 --- a/locale/pl/docs/spis-2024/by_year/honorifics.html +++ b/locale/pl/docs/spis-2024/by_year/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/labelsGender.html b/locale/pl/docs/spis-2024/by_year/labelsGender.html index fb4669035..8ebbe4e33 100644 --- a/locale/pl/docs/spis-2024/by_year/labelsGender.html +++ b/locale/pl/docs/spis-2024/by_year/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/labelsRomantic.html b/locale/pl/docs/spis-2024/by_year/labelsRomantic.html index 71082afe7..935a567f8 100644 --- a/locale/pl/docs/spis-2024/by_year/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/by_year/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/labelsSexuality.html b/locale/pl/docs/spis-2024/by_year/labelsSexuality.html index 1cc505a6c..e34aed50b 100644 --- a/locale/pl/docs/spis-2024/by_year/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/by_year/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/names.html b/locale/pl/docs/spis-2024/by_year/names.html index 582645c19..fa36dc7d2 100644 --- a/locale/pl/docs/spis-2024/by_year/names.html +++ b/locale/pl/docs/spis-2024/by_year/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/neuter.html b/locale/pl/docs/spis-2024/by_year/neuter.html index 28de51463..9b1413ac6 100644 --- a/locale/pl/docs/spis-2024/by_year/neuter.html +++ b/locale/pl/docs/spis-2024/by_year/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/neuterByUsers.html b/locale/pl/docs/spis-2024/by_year/neuterByUsers.html index 3790a5fe3..4d61a3e88 100644 --- a/locale/pl/docs/spis-2024/by_year/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/by_year/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/nouns.html b/locale/pl/docs/spis-2024/by_year/nouns.html index d4910577d..85cd164fe 100644 --- a/locale/pl/docs/spis-2024/by_year/nouns.html +++ b/locale/pl/docs/spis-2024/by_year/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/obstacles.html b/locale/pl/docs/spis-2024/by_year/obstacles.html index 921a68b85..0affb2a83 100644 --- a/locale/pl/docs/spis-2024/by_year/obstacles.html +++ b/locale/pl/docs/spis-2024/by_year/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/pluralNonGendered.html b/locale/pl/docs/spis-2024/by_year/pluralNonGendered.html index d968e5b55..d98c625bc 100644 --- a/locale/pl/docs/spis-2024/by_year/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/by_year/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/pluralNouns.html b/locale/pl/docs/spis-2024/by_year/pluralNouns.html index bde6184f5..8d728f124 100644 --- a/locale/pl/docs/spis-2024/by_year/pluralNouns.html +++ b/locale/pl/docs/spis-2024/by_year/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/pronounGroups.html b/locale/pl/docs/spis-2024/by_year/pronounGroups.html index db98fe5c2..58b2af8c8 100644 --- a/locale/pl/docs/spis-2024/by_year/pronounGroups.html +++ b/locale/pl/docs/spis-2024/by_year/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/pronouns.html b/locale/pl/docs/spis-2024/by_year/pronouns.html index bb2d1f6d9..74f17354b 100644 --- a/locale/pl/docs/spis-2024/by_year/pronouns.html +++ b/locale/pl/docs/spis-2024/by_year/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/pronounsAggr.html b/locale/pl/docs/spis-2024/by_year/pronounsAggr.html index 6d697f19e..0695a5904 100644 --- a/locale/pl/docs/spis-2024/by_year/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/by_year/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/reasons.html b/locale/pl/docs/spis-2024/by_year/reasons.html index 53c278370..d7974bcce 100644 --- a/locale/pl/docs/spis-2024/by_year/reasons.html +++ b/locale/pl/docs/spis-2024/by_year/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionHormonal.html b/locale/pl/docs/spis-2024/by_year/transitionHormonal.html index e12559922..8c5ede42f 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/by_year/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionMarker.html b/locale/pl/docs/spis-2024/by_year/transitionMarker.html index defe7f2b3..105f93125 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionMarker.html +++ b/locale/pl/docs/spis-2024/by_year/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionName.html b/locale/pl/docs/spis-2024/by_year/transitionName.html index 2bb5b242b..f420ed849 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionName.html +++ b/locale/pl/docs/spis-2024/by_year/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionPhysical.html b/locale/pl/docs/spis-2024/by_year/transitionPhysical.html index a52ccab8c..7828b0d17 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/by_year/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionSocial.html b/locale/pl/docs/spis-2024/by_year/transitionSocial.html index 099f87e49..cd86cb737 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionSocial.html +++ b/locale/pl/docs/spis-2024/by_year/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/by_year/transitionSurgical.html b/locale/pl/docs/spis-2024/by_year/transitionSurgical.html index 1b91de2db..7c111a3fb 100644 --- a/locale/pl/docs/spis-2024/by_year/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/by_year/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/age.html b/locale/pl/docs/spis-2024/general/age.html index 5c5e89316..9645edc4d 100644 --- a/locale/pl/docs/spis-2024/general/age.html +++ b/locale/pl/docs/spis-2024/general/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/english.html b/locale/pl/docs/spis-2024/general/english.html index 6364afda0..a39c0a813 100644 --- a/locale/pl/docs/spis-2024/general/english.html +++ b/locale/pl/docs/spis-2024/general/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/groups.html b/locale/pl/docs/spis-2024/general/groups.html index 86a53259a..f200b192f 100644 --- a/locale/pl/docs/spis-2024/general/groups.html +++ b/locale/pl/docs/spis-2024/general/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/honorifics.html b/locale/pl/docs/spis-2024/general/honorifics.html index 77c122402..4a4087a8b 100644 --- a/locale/pl/docs/spis-2024/general/honorifics.html +++ b/locale/pl/docs/spis-2024/general/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/labelsGender.html b/locale/pl/docs/spis-2024/general/labelsGender.html index 28d283e5b..9031c98c3 100644 --- a/locale/pl/docs/spis-2024/general/labelsGender.html +++ b/locale/pl/docs/spis-2024/general/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/labelsRomantic.html b/locale/pl/docs/spis-2024/general/labelsRomantic.html index eff315e72..a29bf2bd5 100644 --- a/locale/pl/docs/spis-2024/general/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/general/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/labelsSexuality.html b/locale/pl/docs/spis-2024/general/labelsSexuality.html index ab473e194..449779f50 100644 --- a/locale/pl/docs/spis-2024/general/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/general/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/names.html b/locale/pl/docs/spis-2024/general/names.html index e75c467d9..48f217cb8 100644 --- a/locale/pl/docs/spis-2024/general/names.html +++ b/locale/pl/docs/spis-2024/general/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/neuter.html b/locale/pl/docs/spis-2024/general/neuter.html index e94107143..abdfb73b4 100644 --- a/locale/pl/docs/spis-2024/general/neuter.html +++ b/locale/pl/docs/spis-2024/general/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/neuterByUsers.html b/locale/pl/docs/spis-2024/general/neuterByUsers.html index 46fa67d8c..128bc7be6 100644 --- a/locale/pl/docs/spis-2024/general/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/general/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/nouns.html b/locale/pl/docs/spis-2024/general/nouns.html index 94171110e..ce6b48fd6 100644 --- a/locale/pl/docs/spis-2024/general/nouns.html +++ b/locale/pl/docs/spis-2024/general/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/obstacles.html b/locale/pl/docs/spis-2024/general/obstacles.html index ea68140c3..2a8ccddd8 100644 --- a/locale/pl/docs/spis-2024/general/obstacles.html +++ b/locale/pl/docs/spis-2024/general/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/pluralNonGendered.html b/locale/pl/docs/spis-2024/general/pluralNonGendered.html index cd050fddd..fe6a71f95 100644 --- a/locale/pl/docs/spis-2024/general/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/general/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/pluralNouns.html b/locale/pl/docs/spis-2024/general/pluralNouns.html index 3278ebfd3..3115979f4 100644 --- a/locale/pl/docs/spis-2024/general/pluralNouns.html +++ b/locale/pl/docs/spis-2024/general/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/pronounGroups.html b/locale/pl/docs/spis-2024/general/pronounGroups.html index 0497af292..c83f47a46 100644 --- a/locale/pl/docs/spis-2024/general/pronounGroups.html +++ b/locale/pl/docs/spis-2024/general/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/pronouns.html b/locale/pl/docs/spis-2024/general/pronouns.html index f768611df..7123d00ee 100644 --- a/locale/pl/docs/spis-2024/general/pronouns.html +++ b/locale/pl/docs/spis-2024/general/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/pronounsAggr.html b/locale/pl/docs/spis-2024/general/pronounsAggr.html index 929f267ee..06fdce08e 100644 --- a/locale/pl/docs/spis-2024/general/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/general/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/reasons.html b/locale/pl/docs/spis-2024/general/reasons.html index c1efaa95a..b4953801e 100644 --- a/locale/pl/docs/spis-2024/general/reasons.html +++ b/locale/pl/docs/spis-2024/general/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/stats.json b/locale/pl/docs/spis-2024/general/stats.json index f3a83d29c..d4e53cb79 100644 --- a/locale/pl/docs/spis-2024/general/stats.json +++ b/locale/pl/docs/spis-2024/general/stats.json @@ -69,12 +69,16 @@ "avg": 23.2, "median": 22.0, "std": 6.1, - "under_30": 87.54, "adults": 89.13, - "over_30": 12.46, - "under_30_count": 2706, "adults_count": 2755, - "over_30_count": 385 + "under_30": 87.54, + "under_30_count": 2706, + "over_30": 12.46, + "over_30_count": 385, + "under_25": 70.01, + "under_25_count": 2164, + "over_25": 29.99, + "over_25_count": 927 }, "neuter": { "nie mam zdania": 8.5, @@ -477,11 +481,11 @@ "avg": 2.1, "median": 2.0, "std": 0.0, - "under_30": -4.8, "adults": 18.2, - "over_30": 4.8, - "under_30_count": 673, "adults_count": 1193, + "under_30": -4.8, + "under_30_count": 673, + "over_30": 4.8, "over_30_count": 217 }, "pronounGroups": { @@ -516,7 +520,6 @@ "on\u00e6/j\u00e6": -2.8, "on/a/jego/jej": -3.6, "onx/jex": -1.2, - "on /je ": -0.6, "on*/je*": -6.1, "on\u00f8/jen\u00f8": -1.3, "ony/jegy": -0.9, @@ -637,8 +640,8 @@ "avg": 2.8, "median": 3.0, "std": 0.6, - "under_30": -5.9, - "adults": 24.1 + "adults": 24.1, + "under_30": -5.9 }, "pronounGroups": { "rodzaj m\u0119ski": -2.9, @@ -771,11 +774,11 @@ "avg": 2.0, "median": 2.0, "std": 0.3, - "under_30": -4.5, "adults": 16.6, - "over_30": 4.6, - "under_30_count": -75, "adults_count": 562, + "under_30": -4.5, + "under_30_count": -75, + "over_30": 4.6, "over_30_count": 146 }, "neuter": { diff --git a/locale/pl/docs/spis-2024/general/transitionHormonal.html b/locale/pl/docs/spis-2024/general/transitionHormonal.html index 6641641af..811754951 100644 --- a/locale/pl/docs/spis-2024/general/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/general/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/transitionMarker.html b/locale/pl/docs/spis-2024/general/transitionMarker.html index e01131d6f..47b05584f 100644 --- a/locale/pl/docs/spis-2024/general/transitionMarker.html +++ b/locale/pl/docs/spis-2024/general/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/transitionName.html b/locale/pl/docs/spis-2024/general/transitionName.html index f333faade..c654b89ab 100644 --- a/locale/pl/docs/spis-2024/general/transitionName.html +++ b/locale/pl/docs/spis-2024/general/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/transitionPhysical.html b/locale/pl/docs/spis-2024/general/transitionPhysical.html index 6b5f0c1cd..4b6ddde3d 100644 --- a/locale/pl/docs/spis-2024/general/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/general/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/transitionSocial.html b/locale/pl/docs/spis-2024/general/transitionSocial.html index 00cb246f7..2631be3ce 100644 --- a/locale/pl/docs/spis-2024/general/transitionSocial.html +++ b/locale/pl/docs/spis-2024/general/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/general/transitionSurgical.html b/locale/pl/docs/spis-2024/general/transitionSurgical.html index e2f577c3a..4a4171889 100644 --- a/locale/pl/docs/spis-2024/general/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/general/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/age.html b/locale/pl/docs/spis-2024/location_abroad/age.html index 1d182465a..5143de842 100644 --- a/locale/pl/docs/spis-2024/location_abroad/age.html +++ b/locale/pl/docs/spis-2024/location_abroad/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/english.html b/locale/pl/docs/spis-2024/location_abroad/english.html index fc378a0fc..b65dadfcc 100644 --- a/locale/pl/docs/spis-2024/location_abroad/english.html +++ b/locale/pl/docs/spis-2024/location_abroad/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/groups.html b/locale/pl/docs/spis-2024/location_abroad/groups.html index e17a0d4f5..8bc332004 100644 --- a/locale/pl/docs/spis-2024/location_abroad/groups.html +++ b/locale/pl/docs/spis-2024/location_abroad/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/honorifics.html b/locale/pl/docs/spis-2024/location_abroad/honorifics.html index 8b1c8d767..26310bacc 100644 --- a/locale/pl/docs/spis-2024/location_abroad/honorifics.html +++ b/locale/pl/docs/spis-2024/location_abroad/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/labelsGender.html b/locale/pl/docs/spis-2024/location_abroad/labelsGender.html index 200e381d5..399333eb1 100644 --- a/locale/pl/docs/spis-2024/location_abroad/labelsGender.html +++ b/locale/pl/docs/spis-2024/location_abroad/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/labelsRomantic.html b/locale/pl/docs/spis-2024/location_abroad/labelsRomantic.html index 80e13d979..8ebeaf6b9 100644 --- a/locale/pl/docs/spis-2024/location_abroad/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/location_abroad/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/labelsSexuality.html b/locale/pl/docs/spis-2024/location_abroad/labelsSexuality.html index 48e713349..9bfe4e221 100644 --- a/locale/pl/docs/spis-2024/location_abroad/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/location_abroad/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/names.html b/locale/pl/docs/spis-2024/location_abroad/names.html index f2179f116..f46e63f3a 100644 --- a/locale/pl/docs/spis-2024/location_abroad/names.html +++ b/locale/pl/docs/spis-2024/location_abroad/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/neuter.html b/locale/pl/docs/spis-2024/location_abroad/neuter.html index 7049ef2b7..654e701ba 100644 --- a/locale/pl/docs/spis-2024/location_abroad/neuter.html +++ b/locale/pl/docs/spis-2024/location_abroad/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/neuterByUsers.html b/locale/pl/docs/spis-2024/location_abroad/neuterByUsers.html index 32839dfa6..8ae85f7f5 100644 --- a/locale/pl/docs/spis-2024/location_abroad/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/location_abroad/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/nouns.html b/locale/pl/docs/spis-2024/location_abroad/nouns.html index cfa2d0f31..cc6f759b5 100644 --- a/locale/pl/docs/spis-2024/location_abroad/nouns.html +++ b/locale/pl/docs/spis-2024/location_abroad/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/obstacles.html b/locale/pl/docs/spis-2024/location_abroad/obstacles.html index c1948aec6..72d3d03cd 100644 --- a/locale/pl/docs/spis-2024/location_abroad/obstacles.html +++ b/locale/pl/docs/spis-2024/location_abroad/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/pluralNonGendered.html b/locale/pl/docs/spis-2024/location_abroad/pluralNonGendered.html index 3f92ef1f8..e7ef4336d 100644 --- a/locale/pl/docs/spis-2024/location_abroad/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/location_abroad/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/pluralNouns.html b/locale/pl/docs/spis-2024/location_abroad/pluralNouns.html index 12f2e72d8..afcf1d7c3 100644 --- a/locale/pl/docs/spis-2024/location_abroad/pluralNouns.html +++ b/locale/pl/docs/spis-2024/location_abroad/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/pronounGroups.html b/locale/pl/docs/spis-2024/location_abroad/pronounGroups.html index 0d65fefa4..2da935388 100644 --- a/locale/pl/docs/spis-2024/location_abroad/pronounGroups.html +++ b/locale/pl/docs/spis-2024/location_abroad/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/pronouns.html b/locale/pl/docs/spis-2024/location_abroad/pronouns.html index ecfdee97a..bab8bf800 100644 --- a/locale/pl/docs/spis-2024/location_abroad/pronouns.html +++ b/locale/pl/docs/spis-2024/location_abroad/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/pronounsAggr.html b/locale/pl/docs/spis-2024/location_abroad/pronounsAggr.html index 35f4ca951..b71709b0f 100644 --- a/locale/pl/docs/spis-2024/location_abroad/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/location_abroad/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/reasons.html b/locale/pl/docs/spis-2024/location_abroad/reasons.html index e341c844c..4e1b48c5b 100644 --- a/locale/pl/docs/spis-2024/location_abroad/reasons.html +++ b/locale/pl/docs/spis-2024/location_abroad/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/stats.json b/locale/pl/docs/spis-2024/location_abroad/stats.json index 0a3b73591..8b97d3217 100644 --- a/locale/pl/docs/spis-2024/location_abroad/stats.json +++ b/locale/pl/docs/spis-2024/location_abroad/stats.json @@ -68,12 +68,16 @@ "avg": 27.3, "median": 25.0, "std": 7.6, - "under_30": 72.36, "adults": 98.37, - "over_30": 27.64, - "under_30_count": 89, "adults_count": 121, - "over_30_count": 34 + "under_30": 72.36, + "under_30_count": 89, + "over_30": 27.64, + "over_30_count": 34, + "under_25": 47.97, + "under_25_count": 59, + "over_25": 52.03, + "over_25_count": 64 }, "neuter": { "nie mam zdania": 5.7, @@ -466,8 +470,8 @@ "avg": 1.1, "median": 2.0, "std": -0.1, - "under_30": -5.2, - "adults": 3.5 + "adults": 3.5, + "under_30": -5.2 }, "pronounGroups": { "rodzaj m\u0119ski": -2.1, @@ -600,11 +604,11 @@ "avg": 1.4, "median": 1.0, "std": 0.4, - "under_30": -2.4, "adults": 5.6, - "over_30": 3.3, - "under_30_count": 6, "adults_count": 18, + "under_30": -2.4, + "under_30_count": 6, + "over_30": 3.3, "over_30_count": 7 }, "neuter": { diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionHormonal.html b/locale/pl/docs/spis-2024/location_abroad/transitionHormonal.html index f3f18643d..d5bc0f703 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionMarker.html b/locale/pl/docs/spis-2024/location_abroad/transitionMarker.html index f1c39a61a..b17c6c683 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionMarker.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionName.html b/locale/pl/docs/spis-2024/location_abroad/transitionName.html index f2765c3ea..e08ea7e83 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionName.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionPhysical.html b/locale/pl/docs/spis-2024/location_abroad/transitionPhysical.html index 05cf0d513..4993db0b2 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionSocial.html b/locale/pl/docs/spis-2024/location_abroad/transitionSocial.html index 138d559c6..e18ae0d89 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionSocial.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_abroad/transitionSurgical.html b/locale/pl/docs/spis-2024/location_abroad/transitionSurgical.html index 67e57e435..cd8f98d98 100644 --- a/locale/pl/docs/spis-2024/location_abroad/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/location_abroad/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/age.html b/locale/pl/docs/spis-2024/location_poland/age.html index dfc1e313b..a47d5c7c5 100644 --- a/locale/pl/docs/spis-2024/location_poland/age.html +++ b/locale/pl/docs/spis-2024/location_poland/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/english.html b/locale/pl/docs/spis-2024/location_poland/english.html index f90674742..5ffd60d6a 100644 --- a/locale/pl/docs/spis-2024/location_poland/english.html +++ b/locale/pl/docs/spis-2024/location_poland/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/groups.html b/locale/pl/docs/spis-2024/location_poland/groups.html index b3cf36661..37fd01b1b 100644 --- a/locale/pl/docs/spis-2024/location_poland/groups.html +++ b/locale/pl/docs/spis-2024/location_poland/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/honorifics.html b/locale/pl/docs/spis-2024/location_poland/honorifics.html index c8d1e9aff..20c5475fe 100644 --- a/locale/pl/docs/spis-2024/location_poland/honorifics.html +++ b/locale/pl/docs/spis-2024/location_poland/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/labelsGender.html b/locale/pl/docs/spis-2024/location_poland/labelsGender.html index d36495129..870639c71 100644 --- a/locale/pl/docs/spis-2024/location_poland/labelsGender.html +++ b/locale/pl/docs/spis-2024/location_poland/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/labelsRomantic.html b/locale/pl/docs/spis-2024/location_poland/labelsRomantic.html index f7f943667..df5c5c5ca 100644 --- a/locale/pl/docs/spis-2024/location_poland/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/location_poland/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/labelsSexuality.html b/locale/pl/docs/spis-2024/location_poland/labelsSexuality.html index 5b01fbbea..2f127c783 100644 --- a/locale/pl/docs/spis-2024/location_poland/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/location_poland/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/names.html b/locale/pl/docs/spis-2024/location_poland/names.html index c17a2de3b..2c4caaee7 100644 --- a/locale/pl/docs/spis-2024/location_poland/names.html +++ b/locale/pl/docs/spis-2024/location_poland/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/neuter.html b/locale/pl/docs/spis-2024/location_poland/neuter.html index 2c869b8ea..e17e0d299 100644 --- a/locale/pl/docs/spis-2024/location_poland/neuter.html +++ b/locale/pl/docs/spis-2024/location_poland/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/neuterByUsers.html b/locale/pl/docs/spis-2024/location_poland/neuterByUsers.html index f78451da1..d23fd4e59 100644 --- a/locale/pl/docs/spis-2024/location_poland/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/location_poland/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/nouns.html b/locale/pl/docs/spis-2024/location_poland/nouns.html index eec46858a..6fe80437c 100644 --- a/locale/pl/docs/spis-2024/location_poland/nouns.html +++ b/locale/pl/docs/spis-2024/location_poland/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/obstacles.html b/locale/pl/docs/spis-2024/location_poland/obstacles.html index e0d7be42e..a701f9b1c 100644 --- a/locale/pl/docs/spis-2024/location_poland/obstacles.html +++ b/locale/pl/docs/spis-2024/location_poland/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/pluralNonGendered.html b/locale/pl/docs/spis-2024/location_poland/pluralNonGendered.html index 286f32814..3f6a7c119 100644 --- a/locale/pl/docs/spis-2024/location_poland/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/location_poland/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/pluralNouns.html b/locale/pl/docs/spis-2024/location_poland/pluralNouns.html index c516b3943..72adccdad 100644 --- a/locale/pl/docs/spis-2024/location_poland/pluralNouns.html +++ b/locale/pl/docs/spis-2024/location_poland/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/pronounGroups.html b/locale/pl/docs/spis-2024/location_poland/pronounGroups.html index 5f2b3a758..4957cfcc1 100644 --- a/locale/pl/docs/spis-2024/location_poland/pronounGroups.html +++ b/locale/pl/docs/spis-2024/location_poland/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/pronouns.html b/locale/pl/docs/spis-2024/location_poland/pronouns.html index 542d73cf9..e4ab612a0 100644 --- a/locale/pl/docs/spis-2024/location_poland/pronouns.html +++ b/locale/pl/docs/spis-2024/location_poland/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/pronounsAggr.html b/locale/pl/docs/spis-2024/location_poland/pronounsAggr.html index 172a59531..45490fb1d 100644 --- a/locale/pl/docs/spis-2024/location_poland/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/location_poland/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/reasons.html b/locale/pl/docs/spis-2024/location_poland/reasons.html index 4d43165df..1f9d07dbb 100644 --- a/locale/pl/docs/spis-2024/location_poland/reasons.html +++ b/locale/pl/docs/spis-2024/location_poland/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/stats.json b/locale/pl/docs/spis-2024/location_poland/stats.json index a3b3a9f01..8dd00379e 100644 --- a/locale/pl/docs/spis-2024/location_poland/stats.json +++ b/locale/pl/docs/spis-2024/location_poland/stats.json @@ -59,12 +59,16 @@ "avg": 23.0, "median": 22.0, "std": 5.9, - "under_30": 88.27, "adults": 88.84, - "over_30": 11.73, - "under_30_count": 2610, "adults_count": 2627, - "over_30_count": 347 + "under_30": 88.27, + "under_30_count": 2610, + "over_30": 11.73, + "over_30_count": 347, + "under_25": 70.95, + "under_25_count": 2098, + "over_25": 29.05, + "over_25_count": 859 }, "neuter": { "nie mam zdania": 8.6, @@ -467,8 +471,8 @@ "avg": 2.8, "median": 3.0, "std": 0.6, - "under_30": -5.8, - "adults": 24.8 + "adults": 24.8, + "under_30": -5.8 }, "pronounGroups": { "rodzaj m\u0119ski": -2.9, @@ -601,11 +605,11 @@ "avg": 1.9, "median": 2.0, "std": 0.3, - "under_30": -4.5, "adults": 16.9, - "over_30": 4.5, - "under_30_count": -75, "adults_count": 545, + "under_30": -4.5, + "under_30_count": -75, + "over_30": 4.5, "over_30_count": 138 }, "neuter": { diff --git a/locale/pl/docs/spis-2024/location_poland/transitionHormonal.html b/locale/pl/docs/spis-2024/location_poland/transitionHormonal.html index 19acb45cb..253646157 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/transitionMarker.html b/locale/pl/docs/spis-2024/location_poland/transitionMarker.html index d41391934..f7afdb3fb 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionMarker.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/transitionName.html b/locale/pl/docs/spis-2024/location_poland/transitionName.html index 7e1c998c1..1ccb30b10 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionName.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/transitionPhysical.html b/locale/pl/docs/spis-2024/location_poland/transitionPhysical.html index 122111ee0..4848b4de8 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/transitionSocial.html b/locale/pl/docs/spis-2024/location_poland/transitionSocial.html index a7ef18e73..2dc98cafb 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionSocial.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/location_poland/transitionSurgical.html b/locale/pl/docs/spis-2024/location_poland/transitionSurgical.html index b639c06e2..521e8435f 100644 --- a/locale/pl/docs/spis-2024/location_poland/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/location_poland/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/age.html b/locale/pl/docs/spis-2024/older/age.html index 2f120b13a..fa564ce05 100644 --- a/locale/pl/docs/spis-2024/older/age.html +++ b/locale/pl/docs/spis-2024/older/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/english.html b/locale/pl/docs/spis-2024/older/english.html index 199178ef0..9f768841d 100644 --- a/locale/pl/docs/spis-2024/older/english.html +++ b/locale/pl/docs/spis-2024/older/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/groups.html b/locale/pl/docs/spis-2024/older/groups.html index accc2ce83..97cb893b7 100644 --- a/locale/pl/docs/spis-2024/older/groups.html +++ b/locale/pl/docs/spis-2024/older/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/honorifics.html b/locale/pl/docs/spis-2024/older/honorifics.html index d474b2e9c..f657ec86f 100644 --- a/locale/pl/docs/spis-2024/older/honorifics.html +++ b/locale/pl/docs/spis-2024/older/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/labelsGender.html b/locale/pl/docs/spis-2024/older/labelsGender.html index cf4d8c9c3..6cdf1ea21 100644 --- a/locale/pl/docs/spis-2024/older/labelsGender.html +++ b/locale/pl/docs/spis-2024/older/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/labelsRomantic.html b/locale/pl/docs/spis-2024/older/labelsRomantic.html index 78246017e..84f62bd63 100644 --- a/locale/pl/docs/spis-2024/older/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/older/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/labelsSexuality.html b/locale/pl/docs/spis-2024/older/labelsSexuality.html index e5096f218..15a70c756 100644 --- a/locale/pl/docs/spis-2024/older/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/older/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/names.html b/locale/pl/docs/spis-2024/older/names.html index ab2ebd3a7..80ed549bd 100644 --- a/locale/pl/docs/spis-2024/older/names.html +++ b/locale/pl/docs/spis-2024/older/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/neuter.html b/locale/pl/docs/spis-2024/older/neuter.html index ccf1344bf..cd914a332 100644 --- a/locale/pl/docs/spis-2024/older/neuter.html +++ b/locale/pl/docs/spis-2024/older/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/neuterByUsers.html b/locale/pl/docs/spis-2024/older/neuterByUsers.html index 409e5b0c1..089de1f06 100644 --- a/locale/pl/docs/spis-2024/older/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/older/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/nouns.html b/locale/pl/docs/spis-2024/older/nouns.html index a71af2005..d566aba49 100644 --- a/locale/pl/docs/spis-2024/older/nouns.html +++ b/locale/pl/docs/spis-2024/older/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/obstacles.html b/locale/pl/docs/spis-2024/older/obstacles.html index daf2b135b..782174783 100644 --- a/locale/pl/docs/spis-2024/older/obstacles.html +++ b/locale/pl/docs/spis-2024/older/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/pluralNonGendered.html b/locale/pl/docs/spis-2024/older/pluralNonGendered.html index 5caf87217..34d2b4dee 100644 --- a/locale/pl/docs/spis-2024/older/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/older/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/pluralNouns.html b/locale/pl/docs/spis-2024/older/pluralNouns.html index 481671c47..7a7ea0e84 100644 --- a/locale/pl/docs/spis-2024/older/pluralNouns.html +++ b/locale/pl/docs/spis-2024/older/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/pronounGroups.html b/locale/pl/docs/spis-2024/older/pronounGroups.html index 784009214..bd1bac550 100644 --- a/locale/pl/docs/spis-2024/older/pronounGroups.html +++ b/locale/pl/docs/spis-2024/older/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/pronouns.html b/locale/pl/docs/spis-2024/older/pronouns.html index 0184f82eb..0e18a5d09 100644 --- a/locale/pl/docs/spis-2024/older/pronouns.html +++ b/locale/pl/docs/spis-2024/older/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/pronounsAggr.html b/locale/pl/docs/spis-2024/older/pronounsAggr.html index 4a2fcd320..63d8fd232 100644 --- a/locale/pl/docs/spis-2024/older/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/older/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/reasons.html b/locale/pl/docs/spis-2024/older/reasons.html index 33bf8a251..1c8691073 100644 --- a/locale/pl/docs/spis-2024/older/reasons.html +++ b/locale/pl/docs/spis-2024/older/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/stats.json b/locale/pl/docs/spis-2024/older/stats.json index 213e8135a..41a07c8be 100644 --- a/locale/pl/docs/spis-2024/older/stats.json +++ b/locale/pl/docs/spis-2024/older/stats.json @@ -57,12 +57,16 @@ "avg": 30.4, "median": 28.0, "std": 6.1, - "under_30": 58.47, "adults": 100.0, - "over_30": 41.53, - "under_30_count": 542, "adults_count": 927, - "over_30_count": 385 + "under_30": 58.47, + "under_30_count": 542, + "over_30": 41.53, + "over_30_count": 385, + "under_25": 0.0, + "under_25_count": 0, + "over_25": 100.0, + "over_25_count": 927 }, "neuter": { "nie mam zdania": 8.8, diff --git a/locale/pl/docs/spis-2024/older/transitionHormonal.html b/locale/pl/docs/spis-2024/older/transitionHormonal.html index 1656ea34a..68ef36fc7 100644 --- a/locale/pl/docs/spis-2024/older/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/older/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/transitionMarker.html b/locale/pl/docs/spis-2024/older/transitionMarker.html index a76c39ba8..29e7c968f 100644 --- a/locale/pl/docs/spis-2024/older/transitionMarker.html +++ b/locale/pl/docs/spis-2024/older/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/transitionName.html b/locale/pl/docs/spis-2024/older/transitionName.html index 9c3c02455..2f357cc11 100644 --- a/locale/pl/docs/spis-2024/older/transitionName.html +++ b/locale/pl/docs/spis-2024/older/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/transitionPhysical.html b/locale/pl/docs/spis-2024/older/transitionPhysical.html index 3f1dd4923..84b974626 100644 --- a/locale/pl/docs/spis-2024/older/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/older/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/transitionSocial.html b/locale/pl/docs/spis-2024/older/transitionSocial.html index 29d7e739a..4b2f1daf4 100644 --- a/locale/pl/docs/spis-2024/older/transitionSocial.html +++ b/locale/pl/docs/spis-2024/older/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/older/transitionSurgical.html b/locale/pl/docs/spis-2024/older/transitionSurgical.html index 375db790c..b4a699bf4 100644 --- a/locale/pl/docs/spis-2024/older/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/older/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/age.html b/locale/pl/docs/spis-2024/younger/age.html index c98f7a131..cfef62f88 100644 --- a/locale/pl/docs/spis-2024/younger/age.html +++ b/locale/pl/docs/spis-2024/younger/age.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/english.html b/locale/pl/docs/spis-2024/younger/english.html index 1688ed1eb..df3c6d078 100644 --- a/locale/pl/docs/spis-2024/younger/english.html +++ b/locale/pl/docs/spis-2024/younger/english.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/groups.html b/locale/pl/docs/spis-2024/younger/groups.html index 021748a41..442842f26 100644 --- a/locale/pl/docs/spis-2024/younger/groups.html +++ b/locale/pl/docs/spis-2024/younger/groups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/honorifics.html b/locale/pl/docs/spis-2024/younger/honorifics.html index 00346dd78..99ad072a2 100644 --- a/locale/pl/docs/spis-2024/younger/honorifics.html +++ b/locale/pl/docs/spis-2024/younger/honorifics.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/labelsGender.html b/locale/pl/docs/spis-2024/younger/labelsGender.html index debc1b613..df4f10d96 100644 --- a/locale/pl/docs/spis-2024/younger/labelsGender.html +++ b/locale/pl/docs/spis-2024/younger/labelsGender.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/labelsRomantic.html b/locale/pl/docs/spis-2024/younger/labelsRomantic.html index b743f5cf2..ecc0ef236 100644 --- a/locale/pl/docs/spis-2024/younger/labelsRomantic.html +++ b/locale/pl/docs/spis-2024/younger/labelsRomantic.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/labelsSexuality.html b/locale/pl/docs/spis-2024/younger/labelsSexuality.html index b48c140d1..a6a0dc418 100644 --- a/locale/pl/docs/spis-2024/younger/labelsSexuality.html +++ b/locale/pl/docs/spis-2024/younger/labelsSexuality.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/names.html b/locale/pl/docs/spis-2024/younger/names.html index 52b1bc1a2..c643457f4 100644 --- a/locale/pl/docs/spis-2024/younger/names.html +++ b/locale/pl/docs/spis-2024/younger/names.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/neuter.html b/locale/pl/docs/spis-2024/younger/neuter.html index 21b4adf1d..a2ea33642 100644 --- a/locale/pl/docs/spis-2024/younger/neuter.html +++ b/locale/pl/docs/spis-2024/younger/neuter.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/neuterByUsers.html b/locale/pl/docs/spis-2024/younger/neuterByUsers.html index 92406e868..f61e0aaa2 100644 --- a/locale/pl/docs/spis-2024/younger/neuterByUsers.html +++ b/locale/pl/docs/spis-2024/younger/neuterByUsers.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/nouns.html b/locale/pl/docs/spis-2024/younger/nouns.html index d150b0e88..e39376cfb 100644 --- a/locale/pl/docs/spis-2024/younger/nouns.html +++ b/locale/pl/docs/spis-2024/younger/nouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/obstacles.html b/locale/pl/docs/spis-2024/younger/obstacles.html index a7dc5d214..4dc62d052 100644 --- a/locale/pl/docs/spis-2024/younger/obstacles.html +++ b/locale/pl/docs/spis-2024/younger/obstacles.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/pluralNonGendered.html b/locale/pl/docs/spis-2024/younger/pluralNonGendered.html index 0bafa57ff..82303a363 100644 --- a/locale/pl/docs/spis-2024/younger/pluralNonGendered.html +++ b/locale/pl/docs/spis-2024/younger/pluralNonGendered.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/pluralNouns.html b/locale/pl/docs/spis-2024/younger/pluralNouns.html index 650b44da0..f74bcc9a0 100644 --- a/locale/pl/docs/spis-2024/younger/pluralNouns.html +++ b/locale/pl/docs/spis-2024/younger/pluralNouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/pronounGroups.html b/locale/pl/docs/spis-2024/younger/pronounGroups.html index 3cca5fa37..f5bc04bbe 100644 --- a/locale/pl/docs/spis-2024/younger/pronounGroups.html +++ b/locale/pl/docs/spis-2024/younger/pronounGroups.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/pronouns.html b/locale/pl/docs/spis-2024/younger/pronouns.html index 74e0ba2b9..3ee7e42e3 100644 --- a/locale/pl/docs/spis-2024/younger/pronouns.html +++ b/locale/pl/docs/spis-2024/younger/pronouns.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/pronounsAggr.html b/locale/pl/docs/spis-2024/younger/pronounsAggr.html index 389157212..f6f1152c4 100644 --- a/locale/pl/docs/spis-2024/younger/pronounsAggr.html +++ b/locale/pl/docs/spis-2024/younger/pronounsAggr.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/reasons.html b/locale/pl/docs/spis-2024/younger/reasons.html index 472bc558c..b00857a49 100644 --- a/locale/pl/docs/spis-2024/younger/reasons.html +++ b/locale/pl/docs/spis-2024/younger/reasons.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/stats.json b/locale/pl/docs/spis-2024/younger/stats.json index d6e8529e0..5397784f1 100644 --- a/locale/pl/docs/spis-2024/younger/stats.json +++ b/locale/pl/docs/spis-2024/younger/stats.json @@ -20,12 +20,16 @@ "avg": 20.1, "median": 20.0, "std": 2.5, - "under_30": 100.0, "adults": 84.47, - "over_30": 0.0, - "under_30_count": 2164, "adults_count": 1828, - "over_30_count": 0 + "under_30": 100.0, + "under_30_count": 2164, + "over_30": 0.0, + "over_30_count": 0, + "under_25": 100.0, + "under_25_count": 2164, + "over_25": 0.0, + "over_25_count": 0 }, "neuter": { "nie mam zdania": 8.3, diff --git a/locale/pl/docs/spis-2024/younger/transitionHormonal.html b/locale/pl/docs/spis-2024/younger/transitionHormonal.html index 1d941ce5c..d26cfd80b 100644 --- a/locale/pl/docs/spis-2024/younger/transitionHormonal.html +++ b/locale/pl/docs/spis-2024/younger/transitionHormonal.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/transitionMarker.html b/locale/pl/docs/spis-2024/younger/transitionMarker.html index 3fb5d2bc5..5d087dddc 100644 --- a/locale/pl/docs/spis-2024/younger/transitionMarker.html +++ b/locale/pl/docs/spis-2024/younger/transitionMarker.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/transitionName.html b/locale/pl/docs/spis-2024/younger/transitionName.html index 88983216f..19e498c7e 100644 --- a/locale/pl/docs/spis-2024/younger/transitionName.html +++ b/locale/pl/docs/spis-2024/younger/transitionName.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/transitionPhysical.html b/locale/pl/docs/spis-2024/younger/transitionPhysical.html index 0f79cd533..b4e6b6975 100644 --- a/locale/pl/docs/spis-2024/younger/transitionPhysical.html +++ b/locale/pl/docs/spis-2024/younger/transitionPhysical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/transitionSocial.html b/locale/pl/docs/spis-2024/younger/transitionSocial.html index 48cb095a8..6e2b54d00 100644 --- a/locale/pl/docs/spis-2024/younger/transitionSocial.html +++ b/locale/pl/docs/spis-2024/younger/transitionSocial.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/locale/pl/docs/spis-2024/younger/transitionSurgical.html b/locale/pl/docs/spis-2024/younger/transitionSurgical.html index 4798dc866..8acbc4997 100644 --- a/locale/pl/docs/spis-2024/younger/transitionSurgical.html +++ b/locale/pl/docs/spis-2024/younger/transitionSurgical.html @@ -6,6 +6,6 @@
-
+
\ No newline at end of file diff --git a/src/parseMarkdown.js b/src/parseMarkdown.js index 4837ee017..bc3a09498 100644 --- a/src/parseMarkdown.js +++ b/src/parseMarkdown.js @@ -40,8 +40,8 @@ const fetchJson = (_, filename, key) => { absolute = true; key = key.substring(1); } - for (let part of key.split('.')) { - part = part.replace(/'/g, '\''); + for (let part of key.replace(/\\\./g, '£').split('.')) { + part = part.replace(/'/g, '\'').replace(/£/g, '.'); c = c[part]; if (c === undefined) { return `item "${part}" is undefined (file ${filename})`;