+ {% if source_language %}{{source_language}} → {% endif %}{{target_language}}
+
+
+
+
+
+
+
+
+
Below you see two translated texts in {{ target_language }}: {{ candidate1_label }} and {{ candidate2_label }}.
+ Please read and compare both translations and decide which one is preferrable.
+ {% comment %}
You can click and highlight each paragraph to independently mark your preferred translation to guide you in the final decision later.
{% endcomment %}
+
+
Higlighting errors:
+
+
+ Highlight the text fragment where you have identified a translation error (drag or click start & end).
+
+
Click repeatedly on the highlighted fragment to increase its severity level or to remove the selection.
+
Minor Severity:
+ Style/grammar/lexical choice could be better/more natural.
+
+
+
Major Severity:
+ Seriously changed meaning, difficult to read, decreases usability.
+
+
+
+
The highlights do not have to have character-level precision. It's sufficient if you highlight the word or rough area where the error appears.
+
Each error should have a separate highlight.
+
+
+
+
+
+
+
+
+ {% if not monolingual %}
+
+ {% endif %}
+
+
+
+
+
+
+{% if guidelines_popup %}
+ {% include 'EvalView/_guidelines_popup.html' %}
+{% endif %}
+
+
+
+ {% if not monolingual %}
+
+
{{ reference_label }}
+
+ {% endif %}
+
+
+
{{ candidate1_label }}
+
+
+
{{ candidate2_label }}
+
+
+
+
+{% for item,scores in items %}
+
+
+
+
+
+
+{% endfor %}
+
+{% endblock %}
diff --git a/EvalView/views.py b/EvalView/views.py
index 60fcc886..f6317391 100644
--- a/EvalView/views.py
+++ b/EvalView/views.py
@@ -30,6 +30,8 @@
from EvalData.models import MultiModalAssessmentTask
from EvalData.models import PairwiseAssessmentDocumentResult
from EvalData.models import PairwiseAssessmentDocumentTask
+from EvalData.models import PairwiseAssessmentDocumentESAResult
+from EvalData.models import PairwiseAssessmentDocumentESATask
from EvalData.models import PairwiseAssessmentResult
from EvalData.models import PairwiseAssessmentTask
from EvalData.models import TaskAgenda
@@ -2398,3 +2400,480 @@ def pairwise_assessment_document(request, code=None, campaign_name=None):
if new_ui:
template = 'EvalView/pairwise-assessment-document-newui.html'
return render(request, template, context)
+
+
+# pylint: disable=C0103,C0330
+@login_required
+def pairwise_assessment_document_esa(request, code=None, campaign_name=None):
+ """
+ Pairwise direct assessment document annotation view.
+ """
+ t1 = datetime.now()
+
+ campaign = None
+ if campaign_name:
+ campaign = Campaign.objects.filter(campaignName=campaign_name)
+ if not campaign.exists():
+ _msg = 'No campaign named "%s" exists, redirecting to dashboard'
+ LOGGER.info(_msg, campaign_name)
+ return redirect('dashboard')
+
+ campaign = campaign[0]
+
+ LOGGER.info(
+ 'Rendering direct assessment document view for user "%s".',
+ request.user.username or "Anonymous",
+ )
+
+ current_task = None
+
+ # Try to identify TaskAgenda for current user.
+ agendas = TaskAgenda.objects.filter(user=request.user)
+
+ if campaign:
+ agendas = agendas.filter(campaign=campaign)
+
+ for agenda in agendas:
+ LOGGER.info('Identified work agenda %s', agenda)
+
+ tasks_to_complete = []
+ for serialized_open_task in agenda.serialized_open_tasks():
+ open_task = serialized_open_task.get_object_instance()
+
+ # Skip tasks which are not available anymore
+ if open_task is None:
+ continue
+
+ if open_task.next_item_for_user(request.user) is not None:
+ current_task = open_task
+ if not campaign:
+ campaign = agenda.campaign
+ else:
+ tasks_to_complete.append(serialized_open_task)
+
+ modified = False
+ for task in tasks_to_complete:
+ modified = agenda.complete_open_task(task) or modified
+
+ if modified:
+ agenda.save()
+
+ if not current_task and agendas.count() > 0:
+ LOGGER.info('Work agendas completed, redirecting to dashboard')
+ LOGGER.info('- code=%s, campaign=%s', code, campaign)
+ return redirect('dashboard')
+
+ # If language code has been given, find a free task and assign to user.
+ if not current_task:
+ current_task = PairwiseAssessmentDocumentESATask.get_task_for_user(
+ user=request.user
+ )
+
+ if not current_task:
+ if code is None or campaign is None:
+ LOGGER.info('No current task detected, redirecting to dashboard')
+ LOGGER.info('- code=%s, campaign=%s', code, campaign)
+ return redirect('dashboard')
+
+ LOGGER.info(
+ 'Identifying next task for code "%s", campaign="%s"',
+ code,
+ campaign,
+ )
+ next_task = PairwiseAssessmentDocumentESATask.get_next_free_task_for_language(
+ code, campaign, request.user
+ )
+
+ if next_task is None:
+ LOGGER.info('No next task detected, redirecting to dashboard')
+ return redirect('dashboard')
+
+ next_task.assignedTo.add(request.user)
+ next_task.save()
+
+ current_task = next_task
+
+ if current_task:
+ if not campaign:
+ campaign = current_task.campaign
+
+ elif campaign.campaignName != current_task.campaign.campaignName:
+ _msg = 'Incompatible campaign given, using item campaign instead!'
+ LOGGER.info(_msg)
+ campaign = current_task.campaign
+
+ # Handling POST requests differs from the original direct_assessment/
+ # direct_assessment_context view
+ t2 = datetime.now()
+ ajax = False
+ item_saved = False
+ error_msg = ''
+ if request.method == "POST":
+ score1 = request.POST.get('score1', None)
+ score2 = request.POST.get('score2', None)
+ mqm1 = request.POST.get('mqm1', None)
+ mqm2 = request.POST.get('mqm2', None)
+ item_id = request.POST.get('item_id', None)
+ task_id = request.POST.get('task_id', None)
+ document_id = request.POST.get('document_id', None)
+ start_timestamp = request.POST.get('start_timestamp', None)
+ end_timestamp = request.POST.get('end_timestamp', None)
+ ajax = bool(request.POST.get('ajax', None) == 'True')
+
+ LOGGER.info('score1=%s, score2=%s, item_id=%s', score1, score2, item_id)
+ print(
+ 'Got request score1={0}, score2={1}, item_id={2}, ajax={3}'.format(
+ score1, score2, item_id, ajax
+ )
+ )
+
+ # If all required information was provided in the POST request
+ if score1 and item_id and start_timestamp and end_timestamp:
+ duration = float(end_timestamp) - float(start_timestamp)
+ LOGGER.debug(float(start_timestamp))
+ LOGGER.debug(float(end_timestamp))
+ LOGGER.info(
+ 'start=%s, end=%s, duration=%s',
+ start_timestamp,
+ end_timestamp,
+ duration,
+ )
+
+ # Get all items from the document that the submitted item belongs
+ # to, and all already collected scores for this document
+ (
+ current_item,
+ block_items,
+ block_results,
+ ) = current_task.next_document_for_user(
+ request.user, return_statistics=False
+ )
+
+ # An item from the right document was submitted
+ if current_item.documentID == document_id:
+ # This is the item that we expected to be annotated first,
+ # which means that there is no score for the current item, so
+ # create new score
+ if current_item.itemID == int(item_id) and current_item.id == int(
+ task_id
+ ):
+
+ utc_now = datetime.utcnow().replace(tzinfo=utc)
+ # pylint: disable=E1101
+ PairwiseAssessmentDocumentESAResult.objects.create(
+ score1=score1,
+ score2=score2,
+ mqm1=mqm1,
+ mqm2=mqm2,
+ start_time=float(start_timestamp),
+ end_time=float(end_timestamp),
+ item=current_item,
+ task=current_task,
+ createdBy=request.user,
+ activated=False,
+ completed=True,
+ dateCompleted=utc_now,
+ )
+ print('Item {} (itemID={}) saved'.format(task_id, item_id))
+ item_saved = True
+
+ # It is not the current item, so check if the result for it
+ # exists
+ else:
+ # Check if there is a score result for the submitted item
+ # TODO: this could be a single query, would it be better or
+ # more effective?
+ current_result = None
+ for result in block_results:
+ if not result:
+ continue
+ if result.item.itemID == int(item_id) and result.item.id == int(
+ task_id
+ ):
+ current_result = result
+ break
+
+ # If already scored, update the result
+ # TODO: consider adding new score, not updating the
+ # previous one
+ if current_result:
+ prev_score1 = current_result.score1
+ prev_score2 = current_result.score2
+ current_result.score1 = score1
+ current_result.score2 = score2
+ current_result.mqm1 = mqm1
+ current_result.mqm2 = mqm2
+ current_result.start_time = float(start_timestamp)
+ current_result.end_time = float(end_timestamp)
+ utc_now = datetime.utcnow().replace(tzinfo=utc)
+ current_result.dateCompleted = utc_now
+ current_result.save()
+ _msg = 'Item {} (itemID={}) updated {}->{} and {}->{}'.format(
+ task_id, item_id, prev_score1, score1, prev_score2, score2
+ )
+ LOGGER.debug(_msg)
+ print(_msg)
+ item_saved = True
+
+ # If not yet scored, check if the submitted item is from
+ # the expected document. Note that document ID is **not**
+ # sufficient, because there can be multiple documents with
+ # the same ID in the task.
+ else:
+ found_item = False
+ for item in block_items:
+ if item.itemID == int(item_id) and item.id == int(task_id):
+ found_item = item
+ break
+
+ # The submitted item is from the same document as the
+ # first unannotated item. It is fine, so save it
+ if found_item:
+ utc_now = datetime.utcnow().replace(tzinfo=utc)
+ # pylint: disable=E1101
+ PairwiseAssessmentDocumentESAResult.objects.create(
+ score1=score1,
+ score2=score2,
+ mqm1=mqm1,
+ mqm2=mqm2,
+ start_time=float(start_timestamp),
+ end_time=float(end_timestamp),
+ item=found_item,
+ task=current_task,
+ createdBy=request.user,
+ activated=False,
+ completed=True,
+ dateCompleted=utc_now,
+ )
+ _msg = 'Item {} (itemID={}) saved, although it was not the next item'.format(
+ task_id, item_id
+ )
+ LOGGER.debug(_msg)
+ print(_msg)
+ item_saved = True
+
+ else:
+ error_msg = (
+ 'We did not expect this item to be submitted. '
+ 'If you used backward/forward buttons in your browser, '
+ 'please reload the page and try again.'
+ )
+
+ _msg = 'Item ID {} does not match item {}, will not save!'.format(
+ item_id, current_item.itemID
+ )
+ LOGGER.debug(_msg)
+ print(_msg)
+
+ # An item from a wrong document was submitted
+ else:
+ print(
+ 'Different document IDs: {} != {}, will not save!'.format(
+ current_item.documentID, document_id
+ )
+ )
+
+ error_msg = (
+ 'We did not expect an item from this document to be submitted. '
+ 'If you used backward/forward buttons in your browser, '
+ 'please reload the page and try again.'
+ )
+
+ t3 = datetime.now()
+
+ # Get all items from the document that the first unannotated item in the
+ # task belongs to, and collect some additional statistics
+ (
+ current_item,
+ completed_items,
+ completed_blocks,
+ completed_items_in_block,
+ block_items,
+ block_results,
+ total_blocks,
+ ) = current_task.next_document_for_user(request.user)
+
+ if not current_item:
+ LOGGER.info('No current item detected, redirecting to dashboard')
+ return redirect('dashboard')
+
+ campaign_opts = set((campaign.campaignOptions or "").lower().split(";"))
+ escape_eos = 'escapeeos' in campaign_opts
+ escape_br = 'escapebr' in campaign_opts
+
+ # Get item scores from the latest corresponding results
+ block_scores = []
+ for item, result in zip(block_items, block_results):
+ # Get target texts with injected HTML tags showing diffs
+ _candidate1_text, _candidate2_text = item.target_texts_with_diffs(
+ escape_html=False
+ )
+ _source_text = item.segmentText
+ _default_score = 50
+
+ if escape_eos:
+ _source_text = _source_text.replace(
+ "<eos>", "<eos>"
+ )
+ _candidate1_text = _candidate1_text.replace(
+ "<eos>", "<eos>"
+ )
+ _candidate2_text = _candidate2_text.replace(
+ "<eos>", "<eos>"
+ )
+
+ if escape_br:
+ _source_text = _source_text.replace("<br/>", " ")
+ _candidate1_text = _candidate1_text.replace(
+ "<br/>", " "
+ )
+ _candidate2_text = _candidate2_text.replace(
+ "<br/>", " "
+ )
+
+ item_scores = {
+ 'completed': bool(result and result.score1 > -1),
+ 'current_item': bool(item.id == current_item.id),
+ 'score1': result.score1 if result else _default_score,
+ 'score2': result.score2 if result else _default_score,
+ 'mqm1': result.mqm1 if result else item.mqm1,
+ 'mqm2': result.mqm2 if result else item.mqm2,
+ 'candidate1_text': _candidate1_text,
+ 'candidate2_text': _candidate2_text,
+ 'segment_text': _source_text,
+ }
+ block_scores.append(item_scores)
+
+ # completed_items_check = current_task.completed_items_for_user(
+ # request.user)
+ _msg = 'completed_items=%s, completed_blocks=%s'
+ LOGGER.info(_msg, completed_items, completed_blocks)
+
+ source_language = current_task.marketSourceLanguage()
+ target_language = current_task.marketTargetLanguage()
+
+ t4 = datetime.now()
+
+ reference_label = 'Source text'
+ candidate1_label = 'Translation A'
+ candidate2_label = 'Translation B'
+
+ priming_question_texts = [
+ 'Below you see a document with {0} sentences in {1} (left columns) '
+ 'and their corresponding candidate translations from two different systems '
+ 'in {2} (right columns). '
+ 'Score each candidate sentence translation in the system\'s document context. '
+ 'You may revisit already scored sentences and update their scores at any time '
+ 'by clicking at a source text.'.format(
+ len(block_items), source_language, target_language
+ ),
+ 'Assess the translation quality answering the question: ',
+ 'How accurately does the candidate text for each system (right column, in bold) '
+ 'convey the original semantics of the source text (left column) in the '
+ 'system\'s document context? ',
+ ]
+ document_question_texts = [
+ 'Please score the overall document translation quality for each system '
+ '(you can score the whole documents only after scoring all individual '
+ 'sentences first).',
+ 'Assess the translation quality answering the question: ',
+ 'How accurately does the entire candidate document translation '
+ 'in {0} (right column) convey the original semantics of the source document '
+ 'in {1} (left column)? '.format(target_language, source_language),
+ ]
+
+ monolingual_task = 'monolingual' in campaign_opts
+ use_sqm = 'sqm' in campaign_opts
+ static_context = 'staticcontext' in campaign_opts
+ doc_guidelines = 'doclvlguideline' in campaign_opts
+ guidelines_popup = (
+ 'guidelinepopup' in campaign_opts or 'guidelinespopup' in campaign_opts
+ )
+ gaming_domain = 'gamingdomainnote' in campaign_opts
+
+ if use_sqm:
+ priming_question_texts = priming_question_texts[:1]
+ document_question_texts = document_question_texts[:1]
+
+ if monolingual_task:
+ source_language = None
+ priming_question_texts = [
+ 'Below you see two documents, each with {0} sentences in {1}. '
+ 'Score each sentence in both documents in their respective document context. '
+ 'You may revisit already scored sentences and update their scores at any time '
+ 'by clicking at a source text.'.format(
+ len(block_items) - 1, target_language
+ ),
+ ]
+ document_question_texts = [
+ 'Please score the overall quality of each document (you can score '
+ 'the whole document only after scoring all individual sentences from all '
+ 'documents first).',
+ ]
+ candidate1_label = 'Translation A'
+ candidate2_label = 'Translation B'
+
+ if doc_guidelines:
+ priming_question_texts = [
+ 'Below you see a document with {0} partial paragraphs in {1} (left columns) '
+ 'and their corresponding two candidate translations in {2} (middle and right column). '
+ 'Please score each paragraph of both candidate translations '
+ 'paying special attention to document-level properties, '
+ 'such as consistency of formality and style, selection of translation terms, pronoun choice, '
+ 'and so on, in addition to the usual correctness criteria. '.format(
+ len(block_items) - 1,
+ source_language,
+ target_language,
+ ),
+ ]
+
+ if gaming_domain:
+ priming_question_texts += [
+ 'The presented texts are messages from an online video game chat. '
+ 'Please take into account the video gaming genre when making your assessments. '
+ ]
+
+ # A part of context used in responses to both Ajax and standard POST
+ # requests
+ context = {
+ 'active_page': 'pairwise-assessment-document-esa',
+ 'item_id': current_item.itemID,
+ 'task_id': current_item.id,
+ 'document_id': current_item.documentID,
+ 'completed_blocks': completed_blocks,
+ 'total_blocks': total_blocks,
+ 'items_left_in_block': len(block_items) - completed_items_in_block,
+ 'source_language': source_language,
+ 'target_language': target_language,
+ 'debug_times': (t2 - t1, t3 - t2, t4 - t3, t4 - t1),
+ 'template_debug': 'debug' in request.GET,
+ 'campaign': campaign.campaignName,
+ 'datask_id': current_task.id,
+ 'trusted_user': current_task.is_trusted_user(request.user),
+ 'monolingual': monolingual_task,
+ 'sqm': use_sqm,
+ 'static_context': static_context,
+ 'guidelines_popup': guidelines_popup,
+ 'doc_guidelines': doc_guidelines,
+ }
+
+ if ajax:
+ ajax_context = {'saved': item_saved, 'error_msg': error_msg}
+ context.update(ajax_context)
+ context.update(BASE_CONTEXT)
+ return JsonResponse(context) # Sent response to the Ajax POST request
+
+ page_context = {
+ 'items': zip(block_items, block_scores),
+ 'num_items': len(block_items),
+ 'reference_label': reference_label,
+ 'candidate1_label': candidate1_label,
+ 'candidate2_label': candidate2_label,
+ 'priming_question_texts': priming_question_texts,
+ 'document_question_texts': document_question_texts,
+ }
+ context.update(page_context)
+ context.update(BASE_CONTEXT)
+
+ template = 'EvalView/pairwise-assessment-document-esa.html'
+ return render(request, template, context)
diff --git a/Examples/PairwiseDocESA/README.md b/Examples/PairwiseDocESA/README.md
new file mode 100644
index 00000000..a6bdea02
--- /dev/null
+++ b/Examples/PairwiseDocESA/README.md
@@ -0,0 +1,14 @@
+# Appraise Evaluation System
+
+ python3 manage.py StartNewCampaign Examples/PairwiseDocESA/manifest.json \
+ --batches-json Examples/PairwiseDocESA/batches.json \
+ --csv-output Examples/PairwiseDocESA/output.csv
+
+ # See Examples/PairwiseDocESA/outputs.csv for a SSO login for the annotator account
+ # Collect some annotations, then export annotation scores...
+
+ python3 manage.py ExportSystemScoresToCSV example18docnewuiesa
+
+# Score Descriptions
+
+ score = Math.max(0, 100 - 4 * number_of_minor_errors - 20 * number_of_major_errors)
diff --git a/Examples/PairwiseDocESA/batches.json b/Examples/PairwiseDocESA/batches.json
new file mode 100644
index 00000000..e3f94170
--- /dev/null
+++ b/Examples/PairwiseDocESA/batches.json
@@ -0,0 +1,3094 @@
+[
+ {
+ "items": [
+ {
+ "_block": -1,
+ "_item": 0,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 0,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 1,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 1,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parental leave in another EU country counts towards pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 2,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 4,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ },
+ {
+ "_itemAll": 5,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 3,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 6,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 7,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 4,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 8,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ },
+ {
+ "_itemAll": 9,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 5,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 10,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 11,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 6,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 12,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 13,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 7,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 8,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 16,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ },
+ {
+ "_itemAll": 17,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 9,
+ "documentID": "5#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 18,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 19,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 10,
+ "documentID": "5#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::5#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 20,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 21,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 10,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 22,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 23,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 11,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parenting time in another EU country counts towards your pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 12,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 26,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ },
+ {
+ "_itemAll": 27,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 13,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 28,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 29,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 14,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 30,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ },
+ {
+ "_itemAll": 31,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 15,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 32,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 33,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 16,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 34,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 35,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 17,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 18,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 38,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ },
+ {
+ "_itemAll": 39,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 19,
+ "documentID": "4#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 40,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 41,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 20,
+ "documentID": "4#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::4#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 42,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 43,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 20,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 44,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 45,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 21,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parenting time in another EU country counts towards your pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 22,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 48,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ },
+ {
+ "_itemAll": 49,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 23,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 50,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 51,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 24,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 52,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ },
+ {
+ "_itemAll": 53,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 25,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 54,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 55,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 26,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 56,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 57,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 27,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 28,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 60,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ },
+ {
+ "_itemAll": 61,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 29,
+ "documentID": "1#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 62,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 63,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 30,
+ "documentID": "1#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::1#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 64,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 65,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 30,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 66,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 67,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 31,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parental leave in another EU country counts towards pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 32,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 70,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ },
+ {
+ "_itemAll": 71,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 33,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 72,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 73,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 34,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 74,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ },
+ {
+ "_itemAll": 75,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 35,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 76,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 77,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 36,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 78,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 79,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 37,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 38,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 82,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ },
+ {
+ "_itemAll": 83,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 39,
+ "documentID": "9#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 84,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 85,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 40,
+ "documentID": "9#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::9#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 86,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 87,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 40,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 88,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 89,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 41,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parenting time in another EU country counts towards your pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 42,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 92,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ },
+ {
+ "_itemAll": 93,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 43,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 94,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 95,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 44,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 96,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ },
+ {
+ "_itemAll": 97,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 45,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 98,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 99,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 46,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 100,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 101,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 47,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 48,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 104,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ },
+ {
+ "_itemAll": 105,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 49,
+ "documentID": "3#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 106,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 107,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 50,
+ "documentID": "3#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::3#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 108,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 109,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 50,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 110,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 111,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 51,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parental leave in another EU country counts towards pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 52,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 114,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ },
+ {
+ "_itemAll": 115,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 53,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 116,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 117,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 54,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 118,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ },
+ {
+ "_itemAll": 119,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 55,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 120,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 121,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 56,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 122,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 123,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 57,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 58,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 126,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ },
+ {
+ "_itemAll": 127,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 59,
+ "documentID": "2#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 128,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 129,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 60,
+ "documentID": "2#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::2#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 130,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 131,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 60,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 132,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 133,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 61,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parenting time in another EU country counts towards your pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 62,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 136,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ },
+ {
+ "_itemAll": 137,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 63,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 138,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 139,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 64,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 140,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ },
+ {
+ "_itemAll": 141,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 65,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 142,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 143,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 66,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 144,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 145,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 67,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 68,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 148,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ },
+ {
+ "_itemAll": 149,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 69,
+ "documentID": "8#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 150,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 151,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 70,
+ "documentID": "8#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::8#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 152,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 153,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 70,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 154,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 155,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 71,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parenting time in another EU country counts towards your pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 72,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 158,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ },
+ {
+ "_itemAll": 159,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 73,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 160,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 161,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 74,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 162,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ },
+ {
+ "_itemAll": 163,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 75,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 164,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 165,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 76,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 166,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 167,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 77,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 78,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 170,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ },
+ {
+ "_itemAll": 171,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 79,
+ "documentID": "10#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 172,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 173,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 80,
+ "documentID": "10#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::10#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 174,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ },
+ {
+ "_itemAll": 175,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 80,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 176,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 177,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 81,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parental leave in another EU country counts towards pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 82,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 180,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ },
+ {
+ "_itemAll": 181,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 83,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 182,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 183,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 84,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 184,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ },
+ {
+ "_itemAll": 185,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 85,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 186,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 187,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 86,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 188,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 189,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 87,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 88,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 192,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ },
+ {
+ "_itemAll": 193,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 89,
+ "documentID": "6#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 194,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 195,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 90,
+ "documentID": "6#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::6#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 196,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 197,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 90,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 0,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::1",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern",
+ "targets": [
+ {
+ "_itemAll": 198,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents"
+ },
+ {
+ "_itemAll": 199,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 91,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 1,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::2",
+ "segmentText": "
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Parental leave in another EU country counts towards pension
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 92,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 2,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::3",
+ "segmentText": "Stand: 22.02.2024 16:49 Uhr",
+ "targets": [
+ {
+ "_itemAll": 202,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "As of: February 22, 2024 4:49 p.m"
+ },
+ {
+ "_itemAll": 203,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "Last updated: 22.02.2024 16:49"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 93,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 3,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::4",
+ "segmentText": "Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte.",
+ "targets": [
+ {
+ "_itemAll": 204,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ },
+ {
+ "_itemAll": 205,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 94,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 4,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::5",
+ "segmentText": "Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion",
+ "targets": [
+ {
+ "_itemAll": 206,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "By Alena Lagm\u00f6ller, ARD Legal Editor"
+ },
+ {
+ "_itemAll": 207,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "By Alena Lagm\u00f6ller, ARD legal department"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 95,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 5,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::6",
+ "segmentText": "EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen.",
+ "targets": [
+ {
+ "_itemAll": 208,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ },
+ {
+ "_itemAll": 209,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 96,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 6,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::7",
+ "segmentText": "So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.",
+ "targets": [
+ {
+ "_itemAll": 210,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time."
+ },
+ {
+ "_itemAll": 211,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 97,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 7,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::8",
+ "segmentText": "
Kein Unterschied zwischen Erziehung im In- und Ausland
No difference between education at home and abroad
"
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 98,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 8,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::9",
+ "segmentText": "Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht.",
+ "targets": [
+ {
+ "_itemAll": 214,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home."
+ },
+ {
+ "_itemAll": 215,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 99,
+ "documentID": "7#1-101",
+ "isCompleteDocument": false,
+ "itemID": 9,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::10",
+ "segmentText": "Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 216,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 217,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ },
+ {
+ "_block": -1,
+ "_item": 100,
+ "documentID": "7#1-101",
+ "isCompleteDocument": true,
+ "itemID": 10,
+ "itemType": "TGT",
+ "segmentContextLeft": "",
+ "segmentID": "example.tsv::7#1-101::10",
+ "segmentText": "EuGH-Urteil st\u00e4rkt Eltern
Erziehungszeit im EU-Ausland z\u00e4hlt f\u00fcr Rente
Stand: 22.02.2024 16:49 Uhr Erziehungszeiten im EU-Ausland k\u00f6nnen laut EuGH auch dann bei der Rente ber\u00fccksichtigt werden, wenn zuvor nicht in die deutsche Rentenkasse eingezahlt wurde. Konkret ging es um eine Deutsche, die lange in den Niederlanden wohnte. Von Alena Lagm\u00f6ller, ARD-Rechtsredaktion EU-B\u00fcrger genie\u00dfen Freiz\u00fcgigkeit - sie haben das Recht, sich frei zwischen den Mitgliedsstaaten zu bewegen. Arbeitszeiten, die im EU-Ausland verrichtet werden, werden auf den inl\u00e4ndischen Rentenanspruch angerechnet.Doch wer im Ausland Kinder erzogen hat, der muss mitunter um eine Anrechnung der Zeiten auf den Rentenanspruch k\u00e4mpfen. So erging es auch einer Frau aus dem deutsch-niederl\u00e4ndischen Grenzgebiet: Sie hat vor dem Landessozialgericht Nordrhein-Westfalen geklagt, weil die Deutsche Rentenversicherung ihre Kindererziehungszeit in den Niederlanden nicht anrechnen wollte. Die Kl\u00e4gerin wohnte viele Jahre in den Niederlanden in der N\u00e4he von Aachen. Ihre Ausbildung hatte sie als Grenzg\u00e4ngerin in Aachen absolviert, war aber nie sozialversicherungspflichtig t\u00e4tig. Sie bekam zwei Kinder, die sie in den Niederlanden aufgezogen hatte und war w\u00e4hrenddessen nicht berufst\u00e4tig. Erst viele Jahre sp\u00e4ter zog sie nach Deutschland und zahlte dann erstmals in die Rentenkasse ein.
Kein Unterschied zwischen Erziehung im In- und Ausland
Als die Frau erwerbsunf\u00e4hig wurde, rechnete die Deutsche Rentenversicherung die Kindererziehungszeit in den Niederlanden nicht auf ihren Rentenanspruch an. Der Europ\u00e4ische Gerichtshof sieht das anders: F\u00fcr die Anrechnung kommt es darauf an, ob zwischen der Kindererziehungszeit im Ausland und der Versicherungszeit im Inland eine \"hinreichende Verbindung\" besteht. Dieses Kriterium hat der EuGH bereits in fr\u00fcheren Entscheidungen entwickelt. Deswegen war schon l\u00e4nger klar, dass grunds\u00e4tzlich auch Kindererziehungszeiten im EU-Ausland bei der Rentenberechnung ber\u00fccksichtigt werden m\u00fcssen. Neu ist aber, dass eine \"hinreichende Verbindung\" selbst dann besteht, wenn die Betroffene vor der Kindererziehungszeit im Ausland keine Beitr\u00e4ge in die Rentenversicherung eingezahlt hat.",
+ "targets": [
+ {
+ "_itemAll": 218,
+ "_target": 0,
+ "targetContextLeft": "",
+ "targetID": "system-B",
+ "targetText": "ECJ ruling strengthens parents
Parenting time in another EU country counts towards your pension
As of: February 22, 2024 4:49 p.m According to the ECJ, parenting periods in other EU countries can be taken into account in the pension even if they have not previously been paid into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD Legal Editor EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours carried out in other EU countries are counted towards the domestic pension entitlement. But those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She sued the state social court of North Rhine-Westphalia because the German pension insurance did not want to take into account the time she spent raising children in the Netherlands. The plaintiff lived in the Netherlands near Aachen for many years. She completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children who she raised in the Netherlands and did not work during this time. It was only many years later that she moved to Germany and then paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the time spent raising children in the Netherlands towards her pension entitlement. The European Court of Justice sees it differently: For the credit to be taken into account, it depends on whether there is a \u201csufficient connection\u201d between the time spent raising children abroad and the insurance time at home. The ECJ has already developed this criterion in previous decisions. It has therefore been clear for some time that, in principle, periods spent raising children in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \u201csufficient connection\u201d even if the person concerned did not pay any contributions to the pension insurance before raising children abroad."
+ },
+ {
+ "_itemAll": 219,
+ "_target": 1,
+ "targetContextLeft": "",
+ "targetID": "system-A",
+ "targetText": "ECJ ruling strengthens parents
Parental leave in another EU country counts towards pension
Last updated: 22.02.2024 16:49 According to the ECJ, child-rearing periods in other EU countries can also be taken into account in the pension if no previous payment has been made into the German pension fund. Specifically, it was about a German woman who had lived in the Netherlands for a long time. By Alena Lagm\u00f6ller, ARD legal department EU citizens enjoy freedom of movement - they have the right to move freely between member states. Working hours worked in other EU countries are counted towards the domestic pension entitlement. However, those who have raised children abroad sometimes have to fight for their periods to be counted towards their pension entitlement. This is what happened to a woman from the German-Dutch border area: She filed a lawsuit before the Regional Social Court of North Rhine-Westphalia because the German pension insurance did not want to take into account her child-rearing time in the Netherlands. The plaintiff lived for many years in the Netherlands, near Aachen. She had completed her training as a cross-border commuter in Aachen, but was never subject to social security contributions. She had two children whom she had raised in the Netherlands and was not working during this time. It was not until many years later that she moved to Germany and paid into the pension fund for the first time.
No difference between education at home and abroad
When the woman became unable to work, the German pension insurance did not count the child-rearing period in the Netherlands against her pension entitlement. The European Court of Justice takes a different view: for the purposes of crediting, it depends on whether there is a \"sufficient connection\" between the child-rearing period abroad and the insurance period in Germany. This criterion has already been developed by the ECJ in previous decisions. For this reason, it has been clear for some time that child-rearing periods in other EU countries must also be taken into account when calculating pensions. What is new, however, is that there is a \"sufficient connection\" even if the person concerned did not pay any contributions to the pension insurance scheme before the child-rearing period abroad."
+ }
+ ],
+ "targetsSize": 2
+ }
+ ],
+ "task": {
+ "batchNo": 1,
+ "batchSize": 100,
+ "randomSeed": 1111,
+ "requiredAnnotations": 1,
+ "sourceLanguage": "deu",
+ "targetLanguage": "eng"
+ }
+ }
+]
\ No newline at end of file
diff --git a/Examples/PairwiseDocESA/create_batches.sh b/Examples/PairwiseDocESA/create_batches.sh
new file mode 100644
index 00000000..b2328089
--- /dev/null
+++ b/Examples/PairwiseDocESA/create_batches.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+set -x
+python3 ../../Scripts/create_wmt22_pairwise_tasks.py -o batches -f ../PairwiseDocNewUI/example.tsv --tsv \
+ --max-segs 100 -s deu -t eng -A system-A -B system-B --rng-seed 1111 --no-qc |& tee batches.run.log
diff --git a/Examples/PairwiseDocESA/manifest.json b/Examples/PairwiseDocESA/manifest.json
new file mode 100644
index 00000000..3faf1363
--- /dev/null
+++ b/Examples/PairwiseDocESA/manifest.json
@@ -0,0 +1,13 @@
+{
+ "CAMPAIGN_URL": "http://127.0.0.1:8000/dashboard/sso/",
+ "CAMPAIGN_NAME": "example18docnewuiesa",
+ "CAMPAIGN_KEY": "c18",
+ "CAMPAIGN_NO": 18,
+ "REDUNDANCY": 1,
+
+ "TASKS_TO_ANNOTATORS": [
+ ["deu", "eng", "uniform", 1, 1]
+ ],
+
+ "TASK_TYPE": "PairwiseDocumentESA"
+}
diff --git a/RegressionTests/tests/examples/example_pairwise_doc_esa.scores.csv.expected b/RegressionTests/tests/examples/example_pairwise_doc_esa.scores.csv.expected
new file mode 100644
index 00000000..5b8b7b9a
--- /dev/null
+++ b/RegressionTests/tests/examples/example_pairwise_doc_esa.scores.csv.expected
@@ -0,0 +1,18 @@
+deueng1201,system-B,0,TGT,deu,eng,10,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976628.489
+deueng1201,system-A,0,TGT,deu,eng,20,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976628.489
+deueng1201,system-B,1,TGT,deu,eng,20,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976629.731
+deueng1201,system-A,1,TGT,deu,eng,30,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976629.731
+deueng1201,system-B,2,TGT,deu,eng,30,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976631.653
+deueng1201,system-A,2,TGT,deu,eng,40,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976631.653
+deueng1201,system-B,3,TGT,deu,eng,40,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976634.057
+deueng1201,system-A,3,TGT,deu,eng,50,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976634.057
+deueng1201,system-B,4,TGT,deu,eng,50,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976636.432
+deueng1201,system-A,4,TGT,deu,eng,60,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976636.432
+deueng1201,system-B,5,TGT,deu,eng,60,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976638.324
+deueng1201,system-A,5,TGT,deu,eng,70,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976638.324
+deueng1201,system-B,6,TGT,deu,eng,70,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976642.538
+deueng1201,system-A,6,TGT,deu,eng,80,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976642.538
+deueng1201,system-B,7,TGT,deu,eng,80,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976645.109
+deueng1201,system-A,7,TGT,deu,eng,90,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976645.109
+deueng1201,system-B,8,TGT,deu,eng,90,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976647.037
+deueng1201,system-A,8,TGT,deu,eng,100,5#1-101,False,"{'start_i': 0, 'end_i': 50, 'severity': 'major'}",1721976625.942,1721976647.037
diff --git a/RegressionTests/tests/examples/example_pairwise_doc_esa.users.csv.expected b/RegressionTests/tests/examples/example_pairwise_doc_esa.users.csv.expected
new file mode 100644
index 00000000..93c6cebb
--- /dev/null
+++ b/RegressionTests/tests/examples/example_pairwise_doc_esa.users.csv.expected
@@ -0,0 +1,3 @@
+Username,Password,URL
+deueng1201,a600717f,http://127.0.0.1:8000/dashboard/sso/deueng1201/a600717f/
+
diff --git a/RegressionTests/tests/examples/test_examples_pairwise_doc_esa.sh b/RegressionTests/tests/examples/test_examples_pairwise_doc_esa.sh
new file mode 100644
index 00000000..a28a5f0a
--- /dev/null
+++ b/RegressionTests/tests/examples/test_examples_pairwise_doc_esa.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash -x
+
+# Exit on error
+set -eo pipefail
+
+prefix=example_pairwise_doc_esa
+
+# Create campaign from Examples\PairwiseDocESA
+$APPRAISE_MANAGE StartNewCampaign $APPRAISE_EXAMPLES/PairwiseDocESA/manifest.json \
+ --batches-json $APPRAISE_EXAMPLES/PairwiseDocESA/batches.json \
+ --csv-output $prefix.users.csv
+
+# Check generated credentials
+test -e $prefix.users.csv
+diff $prefix.users.csv $prefix.users.csv.expected > $prefix.diff
+
+# Make a few annotations
+for score in $( seq 10 10 90 ); do
+ $APPRAISE_MANAGE MakeAnnotation deueng1201:a600717f PairwiseDocumentESA $score:$(( $score + 10 )) --mqm '[{"start_i": 0, "end_i": 50, "severity": "major"}]' '[{"start_i": 0, "end_i": 50, "severity": "major"}]'
+done
+
+# Export scores without timestamps and compare with the expected output
+$APPRAISE_MANAGE ExportSystemScoresToCSV example18docnewuiesa | sed "s/, /| /g" | cut -f-10 -d, | sed "s/| /, /g" > $prefix.scores.csv
+diff $prefix.scores.csv $prefix.scores.csv.expected
+
+# Exit with success code
+exit $EXIT_CODE_SUCCESS