AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 3.142.198.148


Current Path : /usr/share/perl5/Debconf/
Upload File :
Current File : //usr/share/perl5/Debconf/Gettext.pm

#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


package Debconf::Gettext;
use strict;


BEGIN {
	eval 'use Locale::gettext';
	if ($@) {
		eval q{
			sub gettext {
				return shift;
			}
		};
	}
	else {
		textdomain('debconf');
	}
}

use base qw(Exporter);
our @EXPORT=qw(gettext);


1